◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2201 'identifier' : cannot export static declarations The specified static identifier was exported. The following is an example of this error: static void __export func() {} // error, func() is static void __export func() {} // OK -♦-