1234567891011121314151617181920212223242526 |
- #ifndef _SYSTEM_APPLICATION_FILE_PLAYER_H_
- #define _SYSTEM_APPLICATION_FILE_PLAYER_H_
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #include <types.h>
- #include "al_fw.h"
- #include "AL_Multimedia_Player_IF.h"
- typedef struct FilePlayerPrivateData_t_
- {
- UINT32 dUserData;
- }FilePlayerPrivateData_t;
- INT32 FILEApp_fw_callback(AFW_event_t event, void *param);
- bool SysApp_MM_AL_CallBackFuc(AL_PLAYER_Event_t Event);
- void SysApp_MM_VolumeKeyHandler(UINT32 dMessage, UINT8 IsCECKey);
- void SysApp_MM_BurninMode_Pause_MediaPlay(void);
- #ifdef CONFIG_SUPPORT_PVR
- UINT32 SysApp_MM_PVRRec_GetReminderTime2Show(void);
- #endif
- #endif
|