gui_plg_api.h
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:1k
源码类别:

数据库系统

开发平台:

C/C++

  1. /*===============================================================================
  2.  File Name:gui_plg.h
  3.  Author:szhy
  4.  Create Time:2008-2-13
  5.  
  6.  Description:plugin
  7.  History:
  8. ===============================================================================*/
  9. /*-------------------------------------------------------------------------------
  10. Struct Define
  11. -------------------------------------------------------------------------------*/
  12. typedef void (* GUI_PLG_API_Fun)(BU32 bu32Value,BU32 bu32Param);
  13. typedef struct _tagGUI_Plg_s
  14. {
  15. BU32 plg;
  16. GUI_PLG_API_Fun fun;
  17. } GUI_Plg_s;
  18. typedef GUI_Plg_s * GUI_Plg_sp;
  19. /*-------------------------------------------------------------------------------
  20. Function Declare
  21. -------------------------------------------------------------------------------*/
  22. void GUI_PLG_API_Loop(BU32 plg,BU32 bu32Value,BU32 bu32Param);
  23. void GUI_PLG_API_Register(GUI_Plg_sp pPlg,BU32 num);
  24. PU08 GUI_PLG_API_GetVersion(void);