Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在由 MIDL 解析的 IDL 函数定义中使用 const 修饰符吗?
例如
HRESULT TestFunctionCall( [in,string] const char *szParameter);
或者这会导致赛道某处的破损?就生成的 _c.c 和 _s.c 文件而言,它似乎可以很好地通过 MIDL。
const修饰符是MIDL 语言的一部分。因此,您可以在接口定义中使用它。
const