12345678910111213141516171819202122 |
- #ifndef _NES_GAMEMERGEBIN_H_
- #define _NES_GAMEMERGEBIN_H_
- /*customer modify*/
- /*the root dir name of XXX.nes*/
- #define USB_GAMEROOTDIR "gamerom"
- #define USB_GAMEBIN "game.bin"
- enum {
- MERGE_BIN_SIZE_OVERFLOW = 1,
- MERGE_BIN_SUCCESS = 0,
- MERGE_BIN_INVILD_PARAM = -1,
- MERGE_BIN_MALLOC_ERROR = -2,
- MERGE_BIN_OPENFILE_ERROR = -3,
- };
- int APP_GAME_CREATEBIN_Start(void);
- int APP_GAME_CREATEBIN_GetGamePartitionIndex(void);
- #endif
|