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 C2033

'identifier' : bit field cannot have indirection

The bit field was declared as a pointer, which is not allowed. For example:

struct S
{
   int *b : 1;  // error
};