home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / addins / api2help / api2help.odl < prev    next >
Text File  |  1998-04-02  |  1KB  |  47 lines

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