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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ddd.idl : IDL source for ddd.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ddd.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(6E6298EB-9AD2-42C2-BD32-F4C33A144286),
  10. helpstring("Ifff Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface Ifff : IUnknown
  14. {
  15. };
  16. [
  17. object,
  18. uuid(313CF4CB-A625-45DC-BF67-BE1F60A2B748),
  19. helpstring("Irrr Interface"),
  20. pointer_default(unique)
  21. ]
  22. interface Irrr : IUnknown
  23. {
  24. };
  25. [
  26. uuid(2B878A12-9949-41F3-AD11-F354552C5FA6),
  27. version(1.0),
  28. helpstring("ddd 1.0 Type Library")
  29. ]
  30. library DDDLib
  31. {
  32. importlib("stdole32.tlb");
  33. importlib("stdole2.tlb");
  34. [
  35. uuid(81C21224-2784-4953-9C74-F0BA79841876),
  36. helpstring("fff Class")
  37. ]
  38. coclass fff
  39. {
  40. [default] interface Ifff;
  41. };
  42. [
  43. uuid(2FCD9A38-1151-433C-B389-A3C07329390E),
  44. helpstring("rrr Class")
  45. ]
  46. coclass rrr
  47. {
  48. [default] interface Irrr;
  49. };
  50. };