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

nonstandard extension used : 'keyword' is an obsolete keyword

The current version of Visual C++ does not use this keyword.

Possible cause

This warning is automatically promoted to an error. If you wish to modify this behavior, use #pragma warning. For example, to make C4226 into a level 2 warning issue,

#pragma warning(2:4226)

in your source code file.