12345678910111213141516171819202122232425262728293031323334 |
- #ifndef __ESTRIKERPARSEBIN_H__
- #define __ESTRIKERPARSEBIN_H__
- #include "types.h"
- /*data struct*/
- typedef enum phototype
- {
- PHOTOTYPE_BIG=0,
- PHOTOTYPE_SMALL,
- PHOTOTYPE_UNKNOW,
- }PhotoType_e;
- enum {
- ESTRIKER_PHOTOBIN_PARSE_SUCCESS = 0,
- ESTRIKER_PHOTOBIN_PARSE_ERROR = -1,
- ESTRIKER_PHOTOBIN_PARSE_NOROM = -2,
- };
-
- typedef struct photoinfo
- {
- unsigned char *u8PhotoName;
- PhotoType_e ePhotoType;
- int u32PhotoSize;
- unsigned int u32PhotoFalshAddrOffset;
- }PhotoInfo_S;
- UINT32 Mid_EstrikerGetPhotoCnt(void);
- PhotoInfo_S *Mid_EstrikerGetPhotoInfo(void);
- INT32 Mid_EstrikerFreePhotoInfo(void);
- INT32 Mid_EstrikerParsePhotoInfo(void);
- #endif
|