home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch10 / calencod / calen.odl < prev    next >
Text File  |  1995-11-01  |  2KB  |  66 lines

  1. // Calen.odl : type library source for OLE Control project.
  2.  
  3. // This file will be processed by the Make Type Library (mktyplib) tool to
  4. // produce the type library (Calen.tlb) that will become a resource in
  5. // Calen.ocx.
  6.  
  7. #include <olectl.h>
  8.  
  9. [ uuid(5DAA5A20-149D-11CF-952F-0020AF6E903F), version(1.0),
  10.   helpstring("Calen OLE Control module"), control ]
  11. library CALENLib
  12. {
  13.     importlib(STDOLE_TLB);
  14.     importlib(STDTYPE_TLB);
  15.  
  16.     //  Primary dispatch interface for CCalenCtrl
  17.  
  18.     [ uuid(5DAA5A21-149D-11CF-952F-0020AF6E903F),
  19.       helpstring("Dispatch interface for Calen Control"), hidden ]
  20.     dispinterface _DCalen
  21.     {
  22.         properties:
  23.             // NOTE - ClassWizard will maintain property information here.
  24.             //    Use extreme caution when editing this section.
  25.             //{{AFX_ODL_PROP(CCalenCtrl)
  26.             //}}AFX_ODL_PROP
  27.  
  28.         methods:
  29.             // NOTE - ClassWizard will maintain method information here.
  30.             //    Use extreme caution when editing this section.
  31.             //{{AFX_ODL_METHOD(CCalenCtrl)
  32.             //}}AFX_ODL_METHOD
  33.  
  34.             [id(DISPID_ABOUTBOX)] void AboutBox();
  35.     };
  36.  
  37.     //  Event dispatch interface for CCalenCtrl
  38.  
  39.     [ uuid(5DAA5A22-149D-11CF-952F-0020AF6E903F),
  40.       helpstring("Event interface for Calen Control") ]
  41.     dispinterface _DCalenEvents
  42.     {
  43.         properties:
  44.             //  Event interface has no properties
  45.  
  46.         methods:
  47.             // NOTE - ClassWizard will maintain event information here.
  48.             //    Use extreme caution when editing this section.
  49.             //{{AFX_ODL_EVENT(CCalenCtrl)
  50.             //}}AFX_ODL_EVENT
  51.     };
  52.  
  53.     //  Class information for CCalenCtrl
  54.  
  55.     [ uuid(5DAA5A23-149D-11CF-952F-0020AF6E903F),
  56.       helpstring("Calen Control"), control ]
  57.     coclass Calen
  58.     {
  59.         [default] dispinterface _DCalen;
  60.         [default, source] dispinterface _DCalenEvents;
  61.     };
  62.  
  63.  
  64.     //{{AFX_APPEND_ODL}}
  65. };
  66.