我有一个运行时类,我想添加一个枚举。我已经按照 MSDN 文档的建议尝试了以下语法:https ://docs.microsoft.com/en-ca/uwp/midl-3/intro
namespace my_project
{
runtimeclass my_rt_class
{
enum my_enum
{
first = 0,
second = 1
};
}
}
但是,我从 MIDL 收到以下错误:
error MIDL2025: [msg]syntax error [context]: expecting an identifier near ";"
什么是正确的语法?我正在使用10.0.17763.0
Windows SDK 版本。