home *** CD-ROM | disk | FTP | other *** search
/ Building OCXs / Building_OCXs_Que_1995.iso / code / ch10 / timer.odl < prev    next >
Text File  |  1994-12-14  |  2KB  |  69 lines

  1. // timer.odl : type library source for OLE Custom Control project.
  2.  
  3. // This file will be processed by the Make Type Library (mktyplib) tool to
  4. // produce the type library (timer.tlb) that will become a resource in
  5. // timer.ocx.
  6.  
  7. #include <olectl.h>
  8.  
  9. [ uuid(56E0B3B3-1784-11CE-960F-524153480005), version(1.0),
  10.   helpstring("Timer OLE Custom Control module") ]
  11. library TimerLib
  12. {
  13.     importlib(STDOLE_TLB);
  14.     importlib(STDTYPE_TLB);
  15.  
  16.     //  Primary dispatch interface for CTimerCtrl
  17.  
  18.     [ uuid(56E0B3B1-1784-11CE-960F-524153480005),
  19.       helpstring("Dispatch interface for Timer Control") ]
  20.     dispinterface _DTimer
  21.     {
  22.         properties:
  23.             // NOTE - ClassWizard will maintain property information here.
  24.             //    Use extreme caution when editing this section.
  25.             //{{AFX_ODL_PROP(CTimerCtrl)
  26.             [id(DISPID_ENABLED), bindable, requestedit] boolean Enabled;
  27.             [id(1)] short Interval;
  28.             //}}AFX_ODL_PROP
  29.  
  30.         methods:
  31.             // NOTE - ClassWizard will maintain method information here.
  32.             //    Use extreme caution when editing this section.
  33.             //{{AFX_ODL_METHOD(CTimerCtrl)
  34.             //}}AFX_ODL_METHOD
  35.  
  36.             [id(DISPID_ABOUTBOX)] void AboutBox();
  37.     };
  38.  
  39.     //  Event dispatch interface for CTimerCtrl
  40.  
  41.     [ uuid(56E0B3B2-1784-11CE-960F-524153480005),
  42.       helpstring("Event interface for Timer Control") ]
  43.     dispinterface _DTimerEvents
  44.     {
  45.         properties:
  46.             //  Event interface has no properties
  47.  
  48.         methods:
  49.             // NOTE - ClassWizard will maintain event information here.
  50.             //    Use extreme caution when editing this section.
  51.             //{{AFX_ODL_EVENT(CTimerCtrl)
  52.             [id(1)] void Timer();
  53.             //}}AFX_ODL_EVENT
  54.     };
  55.  
  56.     //  Class information for CTimerCtrl
  57.  
  58.     [ uuid(56E0B3B0-1784-11CE-960F-524153480005), licensed,
  59.       helpstring("Timer Control") ]
  60.     coclass Timer
  61.     {
  62.         [default] dispinterface _DTimer;
  63.         [default, source] dispinterface _DTimerEvents;
  64.     };
  65.  
  66.  
  67.     //{{AFX_APPEND_ODL}}
  68. };
  69.