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 C2390

'identifier' : incorrect storage class 'specifier'

The storage class is not legal for the global-scope identifier. The default storage class is used in place of the illegal class.

Possible solutions

Example

register int i;        //error
void main ()
{
   register int j;     //OK
}