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) C4615

#pragma warning : unknown user warning type

An illegal warning specifier was used with pragma warning. To resolve the error, use a valid warning specifier. The following sample generates C4615:

#pragma warning(enable : 4401)   // C4615, 'enable' not valid specifier

// use the code below to resolve the error
// #pragma warning(default : 4401)

void main() {
}