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 1) C4117

macro name 'name' is reserved; 'Command' ignored

Possible causes

The following sample generates C4117:

#define __FILE__ test         // C4117. __FILE__ is a predefined macro
#define ValidMacroName test   // ok

void main() {
}