TIME.ODL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // time.odl : type library source for OLE Custom Control project.
  2. // This file will be processed by the Make Type Library (mktyplib) tool to
  3. // produce the type library (time.tlb) that will become a resource in
  4. // time.ocx.
  5. // This is a part of the Microsoft Foundation Classes C++ library.
  6. // Copyright (C) 1992-1997 Microsoft Corporation
  7. // All rights reserved.
  8. //
  9. // This source code is only intended as a supplement to the
  10. // Microsoft Foundation Classes Reference and the
  11. // Books Online documentation provided with the library.
  12. // See these sources for detailed information regarding the
  13. // Microsoft Foundation Classes product.
  14. #include <olectl.h>
  15. [ uuid(DCF07690-BA7A-101A-B57A-0000C0C3ED5F), version(1.0),
  16.   helpstring("Time OLE Custom Control module"), control ]
  17. library TimeLib
  18. {
  19. importlib(STDOLE_TLB);
  20. importlib(STDTYPE_TLB);
  21. //  Primary dispatch interface for CTimeCtrl
  22. [ uuid(37446B91-5870-101B-B57B-00608CC96AFA),
  23.   helpstring("Dispatch interface for Time Control"), hidden ]
  24. dispinterface _DTime
  25. {
  26. properties:
  27. // NOTE - ClassWizard will maintain property information here.
  28. //    Use extreme caution when editing this section.
  29. //{{AFX_ODL_PROP(CTimeCtrl)
  30. [id(1)] short Interval;
  31. [id(DISPID_ENABLED), bindable, requestedit] boolean Enabled;
  32. //}}AFX_ODL_PROP
  33. methods:
  34. // NOTE - ClassWizard will maintain method information here.
  35. //    Use extreme caution when editing this section.
  36. //{{AFX_ODL_METHOD(CTimeCtrl)
  37. //}}AFX_ODL_METHOD
  38. [id(DISPID_ABOUTBOX)] void AboutBox();
  39. };
  40. //  Event dispatch interface for CTimeCtrl
  41. [ uuid(37446B92-5870-101B-B57B-00608CC96AFA),
  42.   helpstring("Event interface for Time Control") ]
  43. dispinterface _DTimeEvents
  44. {
  45. properties:
  46. //  Event interface has no properties
  47. methods:
  48. // NOTE - ClassWizard will maintain event information here.
  49. //    Use extreme caution when editing this section.
  50. //{{AFX_ODL_EVENT(CTimeCtrl)
  51. [id(1)] void Timer();
  52. //}}AFX_ODL_EVENT
  53. };
  54. //  Class information for CTimeCtrl
  55. [ uuid(DCF0768D-BA7A-101A-B57A-0000C0C3ED5F),
  56.   helpstring("Time Control"), control ]
  57. coclass Time
  58. {
  59. [default] dispinterface _DTime;
  60. [default, source] dispinterface _DTimeEvents;
  61. };
  62. //{{AFX_APPEND_ODL}}
  63. };