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 C2007

#define syntax

No identifier appears after a #define. To resolve the error, use an identifier. The following sample generates C2007:

#define            // C2007
#define true 1      // ok

void main() {
}