IBookMark.h
上传用户:duwei1288
上传日期:2009-12-27
资源大小:451k
文件大小:1k
源码类别:

BREW编程

开发平台:

Visual C++

  1. #ifndef _IBOOKMARK_H
  2. #define _IBOOKMARK_H
  3. #include "AeeStdLib.h"
  4. #include "AeeText.h"
  5. #include "AeeMenu.h"
  6. #include "IStack.h"
  7. //////////////////////////////////////////////////////////////////
  8. // 书签窗口的实现 //
  9. ////////////////////////////////////////////////////////////////// 
  10. //输入窗口数据结构的定义
  11. typedef struct _IBookMarkWin
  12. {
  13. IMenuCtl*     m_pMenuCtl;
  14. IMenuCtl*     m_pSoftKeyCtl;
  15. }IBookMarkWin;
  16. //创建函数
  17. void*   IBOOKMARKWIN_Create(IShell* pShell,void* pParam);
  18. //释放函数
  19. boolean IBOOKMARKWIN_Release(IShell* pShell,void** pWin);
  20. //绘制函数
  21. boolean IBOOKMARKWIN_Redraw(IShell* pShell,void* pWin);
  22. boolean IBOOKMARKWIN_EventHandle(void* pWin,AEEEvent eCode, uint16 wParam, uint32 dwParam);
  23. #endif