StructDemo.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // StructDemo.idl : IDL source for StructDemo.dll
- //
- // This file will be processed by the MIDL tool to
- // produce the type library (StructDemo.tlb) and marshalling code.
- import "oaidl.idl";
- import "ocidl.idl";
- //要添加的结构体
- typedef struct StPerson
- {
- BSTR name;
- UINT age;
- BSTR sex;
- }StPerson;
- [
- object,
- uuid(4FB1A9EF-DBC7-498F-824D-1FEACA15E5A9),
- dual,
- helpstring("IMyStruct Interface"),
- pointer_default(unique)
- ]
- interface IMyStruct : IDispatch
- {
- [id(1),helpstring("adf")] HRESULT GetPersonById([in] UINT id,[out] StPerson** Result);
- };
- [
- uuid(143A3C7E-F406-458E-AD4D-BFB99743D777),
- version(1.0),
- helpstring("StructDemo 1.0 Type Library")
- ]
- library STRUCTDEMOLib
- {
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
- [
- uuid(0C704694-9121-496F-B635-FD4B3BAD4C53),
- helpstring("MyStruct Class")
- ]
- coclass MyStruct
- {
- [default] interface IMyStruct;
- };
- };