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 C2627

'identifier' : member function defined in unnamed class

An anonymous union cannot have member functions.

void main()
{
    union {
       int i;
       void func( void );     // Error, union is anonymous.
    };
    union U {
       void func2( void );    // OK.
    };
}