home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / source / chap04 / lst44 / lst44.odl < prev    next >
Encoding:
Microsoft Object Description Language  |  1996-09-26  |  932 b   |  44 lines

  1. // lst44.odl : type library source for lst44.dll
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////
  5. // NOTE -- Make sure and edit the lst44.idl file as well when you make 
  6. // changes to this file
  7. /////////////////////////////////////////////////////////////////////////
  8.  
  9. // This file will be processed by the Make Type Library (mktyplib) tool to
  10. // produce the type library (lst44.tlb).
  11.  
  12. [
  13.     uuid(C566CC20-182E-11D0-A6AD-00AA00602553),
  14.     version(1.0),
  15.     helpstring("lst44 1.0 Type Library")
  16. ]
  17. library LST44Lib
  18. {
  19.     importlib("stdole32.tlb");
  20.  
  21.     [
  22.         uuid(C566CC21-182E-11D0-A6AD-00AA00602553),
  23.         dual,
  24.         helpstring("ILst44 Interface"),
  25.     ]
  26.     interface ILst44 : IDispatch
  27.     {
  28.         HRESULT GetMachineName([out,retval] BSTR *retval);
  29.     };
  30.  
  31.  
  32.  
  33.     [
  34.         uuid(C566CC25-182E-11D0-A6AD-00AA00602553),
  35.         helpstring("Lst44 Class")
  36.     ]
  37.     coclass Lst44
  38.     {
  39.         [default] interface ILst44;
  40.     };
  41.  
  42.  
  43. };
  44.