Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- typedef struct rpl_entry{
- uint32_t entry_offset;
- char entry_name[8]; /* if name is 8 characters long there won't be 0-termination */
- uint32_t entry_size;
- }rpl_entry_t;
- typedef struct rpl_header{
- uint32_t identifier; /* 0x1A4C5052 */
- uint32_t entry_count;
- rpl_entry_t rpl_entryrecord[entry_count]; /* i know this isn't correct, but huh this is just pseudocode to describe the file format */
- } rpl_header_t;
- byte *raw_data;
Advertisement
Add Comment
Please, Sign In to add comment