SUBEDIT.IDL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <olectl.h>
  2. // SubEdit.idl : IDL source for SubEdit.dll
  3. //
  4. // This file will be processed by the MIDL tool to
  5. // produce the type library (SubEdit.tlb) and marshalling code.
  6. [
  7. object,
  8. uuid(2D7E0F90-3215-11D0-BF28-0000E8D0D146),
  9. dual,
  10. helpstring("IAtlEdit Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IAtlEdit : IDispatch
  14. {
  15. import "oaidl.idl";
  16. import "ocidl.idl";
  17. };
  18. [
  19. uuid(2D7E0F8D-3215-11D0-BF28-0000E8D0D146),
  20. version(1.0),
  21. helpstring("SubEdit 1.0 Type Library")
  22. ]
  23. library SUBEDITLib
  24. {
  25. importlib("stdole32.tlb");
  26. [
  27. uuid(2D7E0F8F-3215-11D0-BF28-0000E8D0D146),
  28. helpstring("AtlEdit Class")
  29. ]
  30. coclass CAtlEdit
  31. {
  32. [default] interface IAtlEdit;
  33. };
  34. };