ReGameDLL_CS/regamedll/hookers/regamedll_debug.h

19 lines
543 B
C
Raw Normal View History

2015-06-30 15:46:07 +06:00
#pragma once
#include "osconfig.h"
#include "maintypes.h"
#include "memory.h"
#ifdef _WIN32
extern void Regamedll_Debug_logAlloc(size_t sz, void *ptr);
extern void Regamedll_Debug_logRealloc(size_t sz, void *oldPtr, void *newPtr);
extern void Regamedll_Debug_logFree(void *ptr);
extern void Regamedll_Debug_logStrDup(const char *s, void *ptr);
extern void Regamedll_Debug_Init(void);
extern void _printf2(const char *fmt, ...);
extern void _print_chat(class CBasePlayer *pPlayer, const char *fmt, ...);
#endif // _WIN32