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

Windows编程

开发平台:

Visual C++

  1. // API2Help.odl : type library source for API2Help.dll
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. // This file will be processed by the Make Type Library (mktyplib) tool to
  5. // produce the type library (API2Help.tlb).
  6. [ uuid(17A22298-431B-11D0-B88F-00C04FD7A0F0), version(1.0),
  7. helpstring ("API2HELP Developer Studio Add-in") ]
  8. library API2Help
  9. {
  10. importlib("stdole32.tlb");
  11. //  Dual interface for CCommands
  12. //
  13. //  All commands that your add-in adds to DevStudio
  14. //   must appear in this interface.  You may use the
  15. //   ClassView to add methods to this interface, which
  16. //   will cause stub implementations of those methods to
  17. //   appear in your CCommands class.
  18. [ uuid(17A22294-431B-11D0-B88F-00C04FD7A0F0),
  19. oleautomation,
  20. dual
  21. ]
  22. interface ICommands : IDispatch
  23. {
  24. // methods
  25. [id(1)]
  26. HRESULT API2HelpCommandMethod();
  27. };
  28. //  Class information for CCommands
  29. [ uuid(17A22295-431B-11D0-B88F-00C04FD7A0F0) ]
  30. coclass Commands
  31. {
  32. [default] interface ICommands;
  33. };
  34. //{{AFX_APPEND_ODL}}
  35. //}}AFX_APPEND_ODL}}
  36. };