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

nonstandard extension used : redefined extern to static

With the default Microsoft extensions (/Ze), you can redefine an extern identifier as static.

Example

extern int i;
static int i;  // warning

Such redefinitions are illegal under ANSI compatibility (/Za).