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 C2513

'type' : no variable declared before '='

The type specifier appears in declaration with no variable identifier. The following sample generates C2513:

void main() {
   int = 9;     // C2513
   // try ...
   // int i = 9;
}