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 C3303

'attribute': attribute can only be used on 'usage'

An attempt was made to use an attribute where it is not valid. For example, the following sample generates C3303:

[module(name="MyLib")];
[coclass, uuid("11111111-1111-1111-1111-111111111111")]   // C3303
__interface b {
};

void main() {
}