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 C2488

'identifier' : 'naked' can only be applied to non-member function definitions

The naked attribute was applied to a function declaration.

Example

__declspec( naked )  int func();  // error, declaration, not definition
__declspec( naked ) int i;        // error, i is not a function