//--- // fxos-cli: A disassembler and OS reverse-engineering tool //--- #ifndef FXOS_CLI_H #define FXOS_CLI_H #include #include #include #include /* Show library */ void show_library(FxOS::Library &library, bool targets, bool asmtables); /* Print general information on an OS file */ void os_info(FxOS::Target &target); /* Disassemble */ int disassembly(FxOS::Library &library, FxOS::Target &target, char const *ref, std::vector passes); #endif /* FXOS_CLI_H */