mirror of
https://github.com/zeldaret/ss
synced 2026-06-14 14:18:00 -04:00
27 lines
513 B
C++
27 lines
513 B
C++
#ifndef DB_MAPFILE_H
|
|
#define 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
|