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 C2201

'identifier' : must have external linkage in order to be exported/imported

The exported identifier is static.

Example

__declspec(dllexport) static void func() {}  // error, func() is static
__declspec(dllexport) void func() {}         // OK