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 4) C4019

empty statement at global scope

A semicolon at global scope is not preceded by a statement.

Possible solution

Example

#define declint( varname ) int #varname;
declint( a );         //Warning, int a;;
declint( b )          //OK, int b;