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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // TestCom1.idl : IDL source for TestCom1.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (TestCom1.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(13597E92-A612-4a6e-908D-2A2F535A267E),
  10. pointer_default(unique),
  11. helpstring("adsfdasf") 
  12. ]
  13. interface IMyAdd: IUnknown
  14. {
  15.     [helpstring("adsf")] 
  16. HRESULT add([in] int a, [in] int b,[out] int* c);
  17. };
  18. [
  19. uuid(E565170F-79D7-4EFB-9402-4D877139D459),
  20. version(1.0),
  21. helpstring("TestCom1 1.0 Type Library")
  22. ]
  23. library TESTCOM1Lib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27.     [
  28.      uuid(AAC11C54-F25F-40fe-A4AC-F2829CE37FD7),
  29.      helpstring("asdf")
  30. ]
  31. coclass MyTools
  32. {
  33.     [default] interface IMyAdd;
  34. };
  35. };