mirror of
https://github.com/rehlds/rehlds.git
synced 2025-03-13 05:50:20 +03:00
* Added SV_CheckUserInfo hook * Implemented PF_precache_* hooks - PF_precache_sound_I - PF_precache_model_I - PF_precache_generic_I * Added EV_Precache and SV_AddResource hooks and update API minor version * Added SV_AddResource_internal and fixed pointers * Added SV_AddResource_hook, fixed chain EV_Precache * Reworked SV_AddResource for Rehlds API * Reverted RehldsFuncs_t's SV_AddResource API * Updated chains * Update rehlds_api_impl.h * Implement `SV_ClientPrintf` hook * Changed `SV_ClientPrintf` chain type to void * Revert `SV_ClientPrintf` code refactor * Removed `const` string type in order to resize the string. * Changes according to var type * Fixing function's functionality * Moved vars declaration after `host_client` check * revert variable naming in SV_ClientPrintf * `SV_ClientPrintf_internal`: more safe string copy Co-authored-by: wopox1337 <wopox1337@ya.ru>
11 lines
144 B
C
11 lines
144 B
C
/*
|
|
* Version declaration dependency file
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define VERSION_MAJOR 3
|
|
#define VERSION_MINOR 12
|
|
#define VERSION_MAINTENANCE 0
|