mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
cppkore uses string/wstring as StringBase while we use std::string/std::wstring as string/wstring. Changed all types in cppkore to String/WString instead.
26 lines
774 B
C++
26 lines
774 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "StringBase.h"
|
|
|
|
namespace Diagnostics
|
|
{
|
|
// Information about a loaded module
|
|
struct ProcessModule
|
|
{
|
|
// Returns the memory address that the module was loaded at.
|
|
uint64_t BaseAddress;
|
|
// Returns the amount of memory required to load the module.This does
|
|
// not include any additional memory allocations made by the module once
|
|
// it is running; it only includes the size of the static code and data
|
|
// in the module file.
|
|
uint64_t ModuleMemorySize;
|
|
// Returns the memory address for function that runs when the module is loaded and run.
|
|
uint64_t EntryPointAddress;
|
|
|
|
// Returns the name of the Module.
|
|
String ModuleName;
|
|
// Returns the full file path for the location of the module.
|
|
String FileName;
|
|
};
|
|
} |