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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ex.idl : IDL source for ex.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ex.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(D2E64D74-69E9-4403-9116-7C313F34D0F3),
  10. dual,
  11. helpstring("Iwork Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface Iwork : IDispatch
  15. {
  16. };
  17. [
  18. uuid(0D216BC9-80A0-4C0E-A240-33542FE5DD2F),
  19. version(1.0),
  20. helpstring("ex 1.0 Type Library")
  21. ]
  22. library EXLib
  23. {
  24. importlib("stdole32.tlb");
  25. importlib("stdole2.tlb");
  26. [
  27. uuid(F8F15DDA-512D-4A82-ADC7-57E581377205),
  28. helpstring("work Class")
  29. ]
  30. coclass work
  31. {
  32. [default] interface Iwork;
  33. };
  34. };