home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / tutorial / autoclik / step1 / autoclik.odl < prev    next >
Encoding:
Microsoft Object Description Language  |  1998-03-27  |  1.1 KB  |  43 lines

  1. // AutoClik.odl : type library source for AutoClik.exe
  2.  
  3. // This file will be processed by the Make Type Library (mktyplib) tool to
  4. // produce the type library (AutoClik.tlb).
  5.  
  6. [ uuid(FC866851-9F96-11CE-B0F2-00AA006C28B3), version(1.0) ]
  7. library AutoClik
  8. {
  9.     importlib("stdole32.tlb");
  10.     
  11.     //  Primary dispatch interface for CAutoClickDoc
  12.     
  13.     [ uuid(FC866852-9F96-11CE-B0F2-00AA006C28B3) ]
  14.     dispinterface IAClick
  15.     {
  16.         properties:
  17.             // NOTE - ClassWizard will maintain property information here.
  18.             //    Use extreme caution when editing this section.
  19.             //{{AFX_ODL_PROP(CAutoClickDoc)
  20.             [id(1)] BSTR text;
  21.             [id(2)] short x;
  22.             [id(3)] short y;
  23.             //}}AFX_ODL_PROP
  24.             
  25.         methods:
  26.             // NOTE - ClassWizard will maintain method information here.
  27.             //    Use extreme caution when editing this section.
  28.             //{{AFX_ODL_METHOD(CAutoClickDoc)
  29.             //}}AFX_ODL_METHOD
  30.  
  31.     };
  32.  
  33.     //  Class information for CAutoClickDoc
  34.     
  35.     [ uuid(FC866850-9F96-11CE-B0F2-00AA006C28B3) ]
  36.     coclass CAutoClickDoc
  37.     {
  38.         [default] dispinterface IAClick;
  39.     };
  40.  
  41.     //{{AFX_APPEND_ODL}}
  42. };
  43.