Files
ss/include/nw4r/db/db_mapFile.h
T
elijah-thomas774 101f014078 cleanup and try to give unk vars a name
(roughly based on DWARF)
sMapBufMaxSize -> guess
sMapBuf -> why is this split??
2024-05-24 18:10:55 -04:00

27 lines
526 B
C++

#ifndef NW4R_DB_MAPFILE_H
#define NW4R_DB_MAPFILE_H
#include <rvl/OS.h>
namespace nw4r {
namespace db {
typedef struct MapFile {
u8 *mapBuf;
const OSModuleInfo *moduleInfo;
s32 fileEntry;
MapFile *next;
} MapFile;
typedef MapFile *MapFileHandle;
MapFileHandle MapFile_RegistOnDvd(void *, const char *, const OSModuleInfo *);
void MapFile_Unregist(MapFileHandle);
void MapFile_UnregistAll();
bool MapFile_QuerySymbol(u32 address, u8 *strBuf, u32 strBufSize);
} // namespace db
} // namespace nw4r
#endif