mirror of
https://github.com/djdevin/recnet-plugin.git
synced 2026-09-08 06:31:29 -07:00
12 lines
533 B
C
12 lines
533 B
C
#ifndef ANTITAMPER_PATCH_H
|
|
#define ANTITAMPER_PATCH_H
|
|
|
|
// Suppresses the client's anti-tamper report funnel (build 2025-04-29). Every tamper detection --
|
|
// ImageSignature (signed CDN URL check), Inject, UnknownDll, Memory_Hash_Mismatch, etc. -- routes
|
|
// through one static method that creates a "Hile" warning (POST api/PlayerReporting/v1/hile) and can
|
|
// force-quit. Neutralizing it stops the ~30s lockup/exit our own patches + recflare's placeholder URL
|
|
// signatures would otherwise trigger.
|
|
void PatchAntiTamper(void);
|
|
|
|
#endif
|