Compiler Error C3116 (Windows CE 5.0)

Send Feedback

'storage specifier' : invalid storage class for interface method

You used typedef, register or static as the storage class for an interface method. For example,

interface IMyInterface
static void myFunc();
};

generates this error.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.