1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /********************************************************************
- ** File Name: app_guiobj_mainmenupop.h
- **
- ** File Description: The header file of mainmenu Popmsg state machine
- **
- ** Copyright(c) 2016 RDA - All Rights Reserved
- **
- ** History Information Description
- ** Date Author Modification
- ** 2016/04/15 shitingliao Create
- **
- ********************************************************************/
- #ifndef __APP_GUIOBJ_MAINMENUPOP_H__
- #define __APP_GUIOBJ_MAINMENUPOP_H__
- /********************************************************************
- Including Files
- ********************************************************************/
- #include "gobj_datastruct.h"
- #include "customize.h"
- /********************************************************************
- Macros
- ********************************************************************/
- typedef enum
- {
- MAINPOPMSG_COMFIRM_RESET = 0,
- #ifdef CONFIG_SUPPORT_USB_UPGRADE
- MAINPOPMSG_COMFIRM_UPGRADE,
- #endif
- #ifdef CONFIG_SUPPORT_NET_OTA
- MAINPOPMSG_COMFIRM_NET_OTA,
- MAINPOPMSG_FTP_FILE_CHECK_WAITING,
- MAINPOPMSG_FTP_FILE_CHECK_FAIL,
- MAINPOPMSG_FTP_FILE_DOWNLOAD_WAITING,
- MAINPOPMSG_FTP_WITHOUT_NEW_VERSION,
- MAINPOPMSG_FTP_FILE_DOWNLOAD_FAIL,
- #endif
- MAINPOPMSG_SHOW_RESETTING,
- MAINPOPMSG_SHOW_UPGRADE_STOP_PLAYER,
- #ifdef SUPPORT_POWERAGAIN_CONFIRM_POWEROFF
- MAINPOPMSG_SHOW_CONFIRM_POWER,
- #endif
- MAINPOPMSG_MAX,
- } MainPopmsgType_t;
- INT32 APP_GUIOBJ_MainPopMsg_GetPopType(void);
- #endif
|