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

nonstandard extension used : 'keyword' is an obsolete keyword, see documentation for __declspec(dllexport)

The _export keyword is obsolete. Use __declspec(dllexport) instead. The following sample generates C4236:

void _export abc() {   // C4236
}

/* use the lines below to resolve the warning
void __declspec(dllexport) abc() {
}
*/ 
            
void main() {
}