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 C3119

cannot have multiple 'module' attributes with different uuid's

Multiple module statements are not allowed. For example, the following code generates C3119:

#include <unknwn.h>
[emitidl];
[module(name="xx", uuid="00000000-0000-0000-0000-111111111111")];
[module(name="xxx")];

int main(void) { return(0); }