Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/preload_executable.h
2025-03-24 21:04:47 +03:00

16 lines
224 B
C

#pragma once
struct PreloadContext
{
#ifdef _WIN32
HANDLE handle{};
HANDLE mappingHandle{};
SIZE_T size{};
PVOID view{};
bool preloaded{};
#endif
~PreloadContext();
void PreloadExecutable();
};