odl
将接口标识为对象说明语言 (ODL) 接口。 MIDL 编译器不需要 odl 特性;仅需确认它是否与较旧的 .odl 文件兼容。
语法
[odl]
备注
odl C++ 特性具有与 odl MIDL 特性相同的功能。
示例
// cpp_attr_ref_odl.cpp
// compile with: /LD
#include <unknwn.h>
[module(name="MyLIb")];
[odl, oleautomation, dual, uuid("00000000-0000-0000-0000-000000000001")]
__interface IMyInterface
{
HRESULT x();
};
[coclass, uuid("00000000-0000-0000-0000-000000000002")]
class cmyClass : public IMyInterface
{
public:
HRESULT x(){}
};
要求
特性上下文 | 值 |
---|---|
适用于 | interface |
可重复 | 否 |
必需的特性 | 无 |
无效的特性 | 无 |
有关特性上下文的详细信息,请参见 特性上下文。