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.    object,
  19.    uuid(4EFAC58C-6FBA-4D0F-AB9F-A6F1A85D4E43),
  20.    helpstring("asdf")
  21.  ]
  22. interface IHello:IUnknown
  23. {
  24. [helpstring("string")] HRESULT hello([in] BSTR name,[out] BSTR* result);
  25. };
  26. [
  27. uuid(2EA1C91A-F9CF-4D04-997A-742A4A47A467),
  28. version(1.0),
  29. helpstring("FirstDemo 1.0 Type Library")
  30. ]
  31. library FIRSTDEMOLib
  32. {
  33. importlib("stdole32.tlb");
  34. importlib("stdole2.tlb");
  35. [
  36. uuid(01CC9D46-E9B5-440A-8BB4-4DA413D1B3E7),
  37. helpstring("MyAbc Class")
  38. ]
  39. coclass MyAbc
  40. {
  41. [default] interface IMyAbc;
  42. };
  43. };