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 C2039

'identifier1' : is not a member of 'identifier2'

The code incorrectly uses a nonmember of a structure or union. For example:

struct S
{
   int mem0;
} *pS;
void main()
{
   pS->mem1 = 0;       // error, mem1 is not a member
   pS->mem0 = 0;       // OK
}