app_guiobj_mute.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /********************************************************************
  2. ** File Name: app_guiobj_mute.h
  3. **
  4. ** File Description: The header file of dvb adjust gui object
  5. **
  6. ** Copyright(c) 2013 Sunplus-prof Technologies - All Rights Reserved
  7. **
  8. ** Date Author Modification
  9. ** 2013/10/28 bingsheng.sun Create
  10. ********************************************************************/
  11. #ifndef _COMMON_GUI_OBJECT_MUTE_H_
  12. #define _COMMON_GUI_OBJECT_MUTE_H_
  13. typedef enum
  14. {
  15. SHOW_MUTE_ON_TV = 0,
  16. #ifdef CONFIG_MEDIA_ENABLE
  17. SHOW_MUTE_ON_FS,
  18. SHOW_MUTE_ON_FILEBROWSER,
  19. #endif
  20. #ifdef CONFIG_SUPPORT_NETAPP
  21. SHOW_MUTE_ON_NET,
  22. #endif
  23. SHOW_MUTE_MAX,
  24. }ShowMute_Param_t;
  25. /********************************************************************
  26. Extern Global Functions
  27. ********************************************************************/
  28. /*****************************************************************************
  29. ** FUNCTION : APP_GUIOBJ_Mute_MuteKeyHandler
  30. **
  31. ** DESCRIPTION :
  32. ** mute key handler
  33. **
  34. ** PARAMETERS :
  35. **
  36. ** RETURN VALUES:
  37. ** None
  38. *****************************************************************************/
  39. void APP_GUIOBJ_Mute_MuteKeyHandler(void);
  40. #endif