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 C2293

'identifier': illegal to have a member variable as a __based specifier

Specifiers for __based modifier must be nonmember pointers.

Example

class A
{
   static int *i;
   void __based(i) *bp; // error
};