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 1) C4257

'structure_name' : class has no data members; initialization ignored

You attempted to initialize a structure that contains no members.

// compile with cl /c
struct S { } ;
S anS = {0};