mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
27 lines
549 B
C++
27 lines
549 B
C++
#ifndef NW4R_DB_MAPFILE_H
|
|
#define NW4R_DB_MAPFILE_H
|
|
|
|
#include "rvl/OS.h" // IWYU pragma: export
|
|
|
|
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
|