mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-06 03:35:04 +00:00
19 lines
337 B
C
19 lines
337 B
C
|
#pragma once
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace nn { namespace diag {
|
||
|
|
||
|
struct ModuleInfo
|
||
|
{
|
||
|
const char* path;
|
||
|
u32 base;
|
||
|
u32 size;
|
||
|
};
|
||
|
|
||
|
u32 GetAllModuleInfo(ModuleInfo** outModuleInfos, void* buffer, u32 bufferLen);
|
||
|
u32 GetRequiredBufferSizeForGetAllModuleInfo();
|
||
|
u32 GetModulePath(char* outName, u32 nameLenMax, u32 address);
|
||
|
|
||
|
} }
|