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 C2346

'member function' : cannot have overloaded methods in embedded-IDL

When generating an IDL from an interface, overloaded member functions are not allowed. For example, the following interface definition will generate this error:

interface IFst {
   HRESULT fst(BSTR b);
   HRESULT fst(long l);
};