20 lines
314 B
C
20 lines
314 B
C
|
#ifndef MYWIN_USER_TOOL_H__
|
||
|
#define MYWIN_USER_TOOL_H__
|
||
|
|
||
|
|
||
|
#define TOOL_APP_PATH "0:/axf"
|
||
|
#define TOOL_APP_MAXNUM 20
|
||
|
|
||
|
|
||
|
//进入设置页面
|
||
|
WIN_MenuStruct *MENU_Tool (WIN_WindowStruct *base,WIN_PicStruct *pic) ;
|
||
|
|
||
|
|
||
|
//消息处理函数
|
||
|
void MENU_ToolMsgLoop (WIN_MenuStruct *menu,WIN_MsgStruct *msg);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|