'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