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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // FirstDemo.idl : IDL source for FirstDemo.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (FirstDemo.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(4EFAC58C-6FBA-4D0F-AB9F-A6F1A85D4E42),
  10. helpstring("IMyAbc Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IMyAbc : IUnknown
  14. {
  15. [helpstring("adsf")] HRESULT add([in] int a, [in] int b, [out] int* c);
  16. };
  17. [
  18. uuid(2EA1C91A-F9CF-4D04-997A-742A4A47A467),
  19. version(1.0),
  20. helpstring("FirstDemo 1.0 Type Library")
  21. ]
  22. library FIRSTDEMOLib
  23. {
  24. importlib("stdole32.tlb");
  25. importlib("stdole2.tlb");
  26. [
  27. uuid(01CC9D46-E9B5-440A-8BB4-4DA413D1B3E7),
  28. helpstring("MyAbc Class")
  29. ]
  30. coclass MyAbc
  31. {
  32. [default] interface IMyAbc;
  33. };
  34. };