r5sdk/r5dev/thirdparty/cppnet/cppkore/ProcessModule.h
Kawe Mazidjatari 04bee896be Fix string/wstring type conflict
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.
2022-05-21 21:51:35 +02:00

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;
};
}