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 4) C4001

nonstandard extension 'single line comment' was used

Single-line comments are standard in C++ but nonstandard in C. A single-line comment in a C file generates an error under strict ANSI compatibility (/Za) or a warning under Microsoft extensions (/Ze). To disable this warning, use #pragma warning(disable:4001).

Example

int i;    // warning
int j;    /* no warning */