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

  1. // brkpntmgr.idl : IDL source for brkpntmgr.dll
  2. //
  3.  
  4. // This file will be processed by the MIDL tool to
  5. // produce the type library (brkpntmgr.tlb) and marshalling code.
  6.  
  7. import "oaidl.idl";
  8. import "ocidl.idl";
  9.     [
  10.         object,
  11.         uuid(C1AC2116-8ABF-11D1-B145-000000000000),
  12.         dual,
  13.         helpstring("IBrkPnts Interface"),
  14.         pointer_default(unique)
  15.     ]
  16.     interface IBrkPnts : IDispatch
  17.     {
  18.         [id(1)] HRESULT BrkPntMgr();
  19.     };
  20.  
  21. [
  22.     uuid(C1AC2109-8ABF-11D1-B145-000000000000),
  23.     version(1.0),
  24.     helpstring("brkpntmgr 1.0 Type Library")
  25. ]
  26. library BRKPNTMGRLib
  27. {
  28.     importlib("stdole32.tlb");
  29.     importlib("stdole2.tlb");
  30.  
  31.     importlib("devshl.dll");
  32.     importlib("ide\devdbg.pkg");
  33.     
  34.  
  35.     [
  36.         uuid(C1AC2117-8ABF-11D1-B145-000000000000),
  37.         helpstring("BrkPnts Class")
  38.     ]
  39.     coclass BrkPnts
  40.     {
  41.         [default] interface IBrkPnts;
  42.     };
  43. };
  44.