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 C3347

'arg': required argument is not specified in attribute idl_module

A required argument was not passed to the idl_module attribute.

The following sample generates C3347:

[module(name="xx")];

[idl_module(dllname=x)];   // C3347
// try the following line instead
// [idl_module(name=test, dllname=x)];

void main() {
}