mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 07:23:00 -04:00
101f014078
(roughly based on DWARF) sMapBufMaxSize -> guess sMapBuf -> why is this split??
27 lines
526 B
C++
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
|