mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
15 lines
225 B
C++
15 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
|