mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 16:50:54 +01:00
16 lines
225 B
C
16 lines
225 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "SteamCrypto.h"
|
||
|
|
#include <mem/mem.h>
|
||
|
|
|
||
|
|
namespace steam
|
||
|
|
{
|
||
|
|
struct CEGLocationInfo
|
||
|
|
{
|
||
|
|
uint8_t* start;
|
||
|
|
mem::region textSeg;
|
||
|
|
};
|
||
|
|
|
||
|
|
uintptr_t CrackCEGInPlace(const CEGLocationInfo&);
|
||
|
|
} // namespace steam
|