mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 11:15:04 +00:00
18 lines
337 B
C++
18 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);
|
|
|
|
} }
|