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

Windows编程

开发平台:

Visual C++

  1. // pal.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 (pal.tlb) that will become a resource in
  4. // pal.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(5733F771-BE58-101A-B57A-0000C0C3ED5F), version(1.0),
  16.   helpstring("Pal OLE Custom Control module"), control ]
  17. library PalLib
  18. {
  19. importlib(STDOLE_TLB);
  20. importlib(STDTYPE_TLB);
  21. //  Primary dispatch interface for CPalCtrl
  22. [ uuid(37446B83-5870-101B-B57B-00608CC96AFA),
  23.   helpstring("Dispatch interface for Pal Control"), hidden ]
  24. dispinterface _DPal
  25. {
  26. properties:
  27. // NOTE - ClassWizard will maintain property information here.
  28. //    Use extreme caution when editing this section.
  29. //{{AFX_ODL_PROP(CPalCtrl)
  30. [id(1)] short Length;
  31. [id(2)] OLE_HANDLE Handle;
  32. [id(3)] IPictureDisp* Picture;
  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(CPalCtrl)
  38. [id(4), propget] OLE_COLOR Entry(short nIndex);
  39. [id(4), propput] void Entry(short nIndex, OLE_COLOR newValue);
  40. //}}AFX_ODL_METHOD
  41. [id(DISPID_ABOUTBOX)] void AboutBox();
  42. };
  43. //  Event dispatch interface for CPalCtrl
  44. [ uuid(37446B84-5870-101B-B57B-00608CC96AFA),
  45.   helpstring("Event interface for Pal Control") ]
  46. dispinterface _DPalEvents
  47. {
  48. properties:
  49. //  Event interface has no properties
  50. methods:
  51. // NOTE - ClassWizard will maintain event information here.
  52. //    Use extreme caution when editing this section.
  53. //{{AFX_ODL_EVENT(CPalCtrl)
  54. //}}AFX_ODL_EVENT
  55. };
  56. //  Class information for CPalCtrl
  57. [ uuid(5733F76E-BE58-101A-B57A-0000C0C3ED5F),
  58.   helpstring("Pal Control"), control ]
  59. coclass Pal
  60. {
  61. [default] dispinterface _DPal;
  62. [default, source] dispinterface _DPalEvents;
  63. };
  64. //{{AFX_APPEND_ODL}}
  65. };