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

  1. // ReplAll.odl : type library source for ReplAll.dll
  2.  
  3. // This file will be processed by the Make Type Library (mktyplib) tool to
  4. // produce the type library (ReplAll.tlb).
  5.  
  6. [    uuid(1433430E-B34A-11D0-A217-244106C10000), version(1.0),
  7.     helpstring ("REPLALL Developer Studio Add-in") ]
  8. library ReplAll
  9. {
  10.     importlib("stdole32.tlb");
  11.     importlib("devshl.dll");
  12.     importlib("ide\devdbg.pkg");
  13.     
  14.  
  15.     //  Dual interface for CCommands
  16.     //
  17.     //  All commands that your add-in adds to DevStudio
  18.     //   must appear in this interface.  You may use the
  19.     //   ClassView to add methods to this interface, which
  20.     //   will cause stub implementations of those methods to
  21.     //   appear in your CCommands class.
  22.     
  23.     [    uuid(1433430A-B34A-11D0-A217-244106C10000),
  24.         oleautomation,
  25.         dual
  26.     ]
  27.  
  28.     interface ICommands : IDispatch
  29.     {
  30.         // methods
  31.         [id(1)]
  32.         HRESULT ReplAllCommandMethod();
  33.     };
  34.  
  35.     //  Class information for CCommands
  36.  
  37.     [ uuid(1433430B-B34A-11D0-A217-244106C10000) ]
  38.     coclass Commands
  39.     {
  40.         [default] interface ICommands;
  41.     };
  42.  
  43.     //{{AFX_APPEND_ODL}}
  44.     //}}AFX_APPEND_ODL}}
  45. };
  46.