exStruct.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // exStruct.idl : IDL source for exStruct.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (exStruct.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. typedef struct StPerson
  8. {
  9.      BSTR name;
  10.  UINT age;
  11.  BSTR sex;
  12. }StPerson;
  13. [
  14. object,
  15. uuid(3FEEA45C-DB9F-47AF-BED6-80E1520A3B0F),
  16. dual,
  17. helpstring("IMystruct Interface"),
  18. pointer_default(unique)
  19. ]
  20. interface IMystruct : IDispatch
  21. {
  22. [id(1), helpstring("method GetPersonById")] HRESULT GetPersonById([in] UINT id,[out] StPerson** Result);
  23. [id(2), helpstring("method GetAllPerson")] HRESULT GetAllPerson([out] UINT* number,[out] StPerson** Result);
  24. [id(3), helpstring("method SavePerson")] HRESULT SavePerson([in] UINT number,[in] StPerson* Result,[out] UINT* pResult);
  25. };
  26. [
  27. uuid(90333778-D3B1-4928-82B7-72745E888D1E),
  28. version(1.0),
  29. helpstring("exStruct 1.0 Type Library")
  30. ]
  31. library EXSTRUCTLib
  32. {
  33. importlib("stdole32.tlb");
  34. importlib("stdole2.tlb");
  35. [
  36. uuid(F476CC90-E3B2-4DB6-8988-8A0914D12EF7),
  37. helpstring("Mystruct Class")
  38. ]
  39. coclass Mystruct
  40. {
  41. [default] interface IMystruct;
  42. };
  43. };