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

Windows编程

开发平台:

Visual C++

  1. // push.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 (push.tlb) that will become a resource in
  4. // push.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(75303866-B925-101A-B57A-0000C0C3ED5F), version(1.0),
  16.   helpstring("Push OLE Custom Control module"), control ]
  17. library PushLib
  18. {
  19. importlib(STDOLE_TLB);
  20. importlib(STDTYPE_TLB);
  21. //  Primary dispatch interface for CPushCtrl
  22. [ uuid(37446B86-5870-101B-B57B-00608CC96AFA),
  23.   helpstring("Dispatch interface for Push Control"), hidden ]
  24. dispinterface _DPush
  25. {
  26. properties:
  27. // NOTE - ClassWizard will maintain property information here.
  28. //    Use extreme caution when editing this section.
  29. //{{AFX_ODL_PROP(CPushCtrl)
  30. [id(DISPID_BORDERSTYLE), bindable, requestedit] short BorderStyle;
  31. [id(DISPID_CAPTION), bindable, requestedit] BSTR Caption;
  32. [id(DISPID_ENABLED), bindable, requestedit] boolean Enabled;
  33. //}}AFX_ODL_PROP
  34. methods:
  35. // NOTE - ClassWizard will maintain method information here.
  36. //    Use extreme caution when editing this section.
  37. //{{AFX_ODL_METHOD(CPushCtrl)
  38. //}}AFX_ODL_METHOD
  39. [id(DISPID_ABOUTBOX)] void AboutBox();
  40. };
  41. //  Event dispatch interface for CPushCtrl
  42. [ uuid(37446B87-5870-101B-B57B-00608CC96AFA),
  43.   helpstring("Event interface for Push Control") ]
  44. dispinterface _DPushEvents
  45. {
  46. properties:
  47. //  Event interface has no properties
  48. methods:
  49. // NOTE - ClassWizard will maintain event information here.
  50. //    Use extreme caution when editing this section.
  51. //{{AFX_ODL_EVENT(CPushCtrl)
  52. [id(1)] void CustomClick(BSTR lpstrCaption, short cchCaption);
  53. //}}AFX_ODL_EVENT
  54. };
  55. //  Class information for CPushCtrl
  56. [ uuid(75303863-B925-101A-B57A-0000C0C3ED5F),
  57.   helpstring("Push Control"), control ]
  58. coclass Push
  59. {
  60. [default] dispinterface _DPush;
  61. [default, source] dispinterface _DPushEvents;
  62. };
  63. //{{AFX_APPEND_ODL}}
  64. };