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) C4926

'identifier': symbol is already defined: attributes ignored

A forward declaration was found but an attributed construct with the same name already exists. The attributes for the forward declaration are ignored. The following sample generates C4926:

[module(name="MyLib")];

[coclass] 
struct a {
};

[coclass] 
struct a;   // C4926

void main() {
}