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!

Fatal Error C1070

mismatched #if/#endif pair in file 'filename'

An #if, #ifdef, or #ifndef directive has no corresponding #endif. The following sample generates C1070:

#define TEST

#ifdef TEST
// use the line below to resolve the error
// #endif

#ifdef TEST

#endif

void main() {
}