#ifndef _ASM_READER_H_ #define _ASM_READER_H_ #include #include struct ivy_asm_reader { FILE *r_fp; struct ivy_asm_object_info r_info; struct ivy_asm_section_info *r_sections; }; struct ivy_asm_section_reader { struct ivy_asm_reader *r_parent; const struct ivy_asm_section_info *r_info; }; struct ivy_asm_constpool_reader { size_t r_nr_entries; struct ivy_asm_section_reader *r_pool, *r_xdat; }; #endif