load_symbol_map.h 328 B

12345678910111213
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <string>
  6. /*
  7. * Loads a symbol map file for use with the disassembler
  8. * @param filename String filename path of symbol map file
  9. */
  10. void LoadSymbolMap(std::string filename);