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 C2130

#line expected a string containing the filename, found 'token'

The optional file name token following #line linenumber must be a string. The following sample generates C2130:

void main() {
   #line 1000 test   // C2130
   // try ...
   // #line 1000 "test"
}