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 Warning (level 3) C4064

switch of incomplete enum 'enumeration'

A switch statement specifies a selector of an enumerated type that is not defined.

Example

enum E;
void func ( E e )
{
   switch(e)
   {
   case 7:
      break;  // warning, E not defined
   }
}