123456789101112131415161718192021222324 |
- #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);
- void SysApp_MM_Refresh_GUI(void);
- #endif
|