1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /********************************************************************
- ** File Name: app_guiobj_mute.h
- **
- ** File Description: The header file of dvb adjust gui object
- **
- ** Copyright(c) 2013 Sunplus-prof Technologies - All Rights Reserved
- **
- ** Date Author Modification
- ** 2013/10/28 bingsheng.sun Create
- ********************************************************************/
- #ifndef _COMMON_GUI_OBJECT_MUTE_H_
- #define _COMMON_GUI_OBJECT_MUTE_H_
- typedef enum
- {
- SHOW_MUTE_ON_TV = 0,
- #ifdef CONFIG_MEDIA_ENABLE
- SHOW_MUTE_ON_FS,
- SHOW_MUTE_ON_FILEBROWSER,
- #endif
- #ifdef CONFIG_SUPPORT_NETAPP
- SHOW_MUTE_ON_NET,
- #endif
- SHOW_MUTE_MAX,
- }ShowMute_Param_t;
- /********************************************************************
- Extern Global Functions
- ********************************************************************/
- /*****************************************************************************
- ** FUNCTION : APP_GUIOBJ_Mute_MuteKeyHandler
- **
- ** DESCRIPTION :
- ** mute key handler
- **
- ** PARAMETERS :
- **
- ** RETURN VALUES:
- ** None
- *****************************************************************************/
- void APP_GUIOBJ_Mute_MuteKeyHandler(void);
- #endif
|