Update Interfaces.hpp

This commit is contained in:
0TheSpy
2022-11-10 03:05:39 +03:00
committed by GitHub
parent fc654392e8
commit 2b53e18cd7

View File

@ -2,7 +2,7 @@
#define INTERFACES #define INTERFACES
#pragma once #pragma once
//#define DEBUG #define DEBUG
#ifdef DEBUG #ifdef DEBUG
#define printfdbg(data, ...) printf(XorStr(data), __VA_ARGS__) #define printfdbg(data, ...) printf(XorStr(data), __VA_ARGS__)
@ -341,7 +341,7 @@ float GetVisibleFloat(const char* cvar);
const char* GetVisibleValue(const char* cvar); const char* GetVisibleValue(const char* cvar);
static __declspec(naked) void __cdecl Invoke_NET_SetConVar(void* pfn, const char* cvar, const char* value) static __declspec(naked) void __cdecl Invoke_NET_SetConVar(void* pfn, const char* cvar, const char* value)
{ {
__asm __asm
{ {
push ebp push ebp
@ -357,8 +357,7 @@ static __declspec(naked) void __cdecl Invoke_NET_SetConVar(void* pfn, const char
} }
} }
void NETSetConVar(const char* name, const char* value); void NETSetConVar(const char* name, const char* value);
void SetName(const char* pszName);
#endif #endif