NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4616

#pragma warning : warning number 'number1' out of range, must be between 'number2' and 'number3'

The warning number specified in the warning pragma cannot be reassigned. Only warnings between number2 and number3 can be reassigned. The pragma was ignored. The following sample generates C4616:

#pragma warning( disable : 0 )   // C4616, use number between 1 and 999
// or 4001 and 4999

void main() {
}