From af56d964c16fa2bf02f62e5e6c0198694130c87c Mon Sep 17 00:00:00 2001 From: Vincent Herbet Date: Tue, 18 Dec 2018 10:16:33 +0100 Subject: [PATCH] Bump ReHLDS version to 3.5 (#647) --- public/resdk/engine/rehlds_api.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/resdk/engine/rehlds_api.h b/public/resdk/engine/rehlds_api.h index 63348948..4f4e63df 100644 --- a/public/resdk/engine/rehlds_api.h +++ b/public/resdk/engine/rehlds_api.h @@ -45,7 +45,7 @@ #include "../common/hookchains.h" #define REHLDS_API_VERSION_MAJOR 3 -#define REHLDS_API_VERSION_MINOR 4 +#define REHLDS_API_VERSION_MINOR 5 //Steam_NotifyClientConnect hook typedef IHookChain IRehldsHook_Steam_NotifyClientConnect; @@ -203,6 +203,10 @@ typedef IHookChainRegistry IRehldsHook_CreateFakeClient; typedef IHookChainRegistry IRehldsHookRegistry_CreateFakeClient; +//SV_CheckConnectionLessRateLimits +typedef IHookChain IRehldsHook_SV_CheckConnectionLessRateLimits; +typedef IHookChainRegistry IRehldsHookRegistry_SV_CheckConnectionLessRateLimits; + class IRehldsHookchains { public: virtual ~IRehldsHookchains() { } @@ -246,6 +250,7 @@ public: virtual IRehldsHookRegistry_SV_CreatePacketEntities* SV_CreatePacketEntities() = 0; virtual IRehldsHookRegistry_SV_EmitSound2* SV_EmitSound2() = 0; virtual IRehldsHookRegistry_CreateFakeClient* CreateFakeClient() = 0; + virtual IRehldsHookRegistry_SV_CheckConnectionLessRateLimits* SV_CheckConnectionLessRateLimits() = 0; }; struct RehldsFuncs_t {