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 C3118

'interface' : interfaces do not support virtual inheritance

You tried to virtually inherit from an interface. For example,

__interface I1 {
};

__interface I2 : virtual I1 {
};

generates this error.