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 Error C2071

'identifier' : illegal storage class

identifier was declared with an illegal storage class. The following sample generates C2071:

struct C {
extern int i;   // C2071, remove extern to resolve error
};

void main() {
}