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 C3116

'storage specifier' : invalid storage class for interface method

You used typedef, register or static as the storage class for an interface method; these storage classes are not permitted on interface members.

The following sample generates C3116:

__interface IMyInterface {
static void myFunc();   // C3116
};