2012-05-27 17:36:49 +02:00
|
|
|
#ifndef _INCLUDE_GDC_MAIN_H_
|
|
|
|
#define _INCLUDE_GDC_MAIN_H_
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#if 0
|
|
|
|
#include "TextParsers.h"
|
|
|
|
#include "GameConfigs.h"
|
|
|
|
|
|
|
|
using namespace SourceMod;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int findFuncPos(const char* sym);
|
|
|
|
int findVFunc(void *handle, void **vt, const char *symbol);
|
|
|
|
|
2012-07-03 16:27:27 +02:00
|
|
|
int checkSigStringW(int file, const char* symbol);
|
|
|
|
int checkSigStringL(void* handle, const char* symbol);
|
2012-05-27 17:36:49 +02:00
|
|
|
|
|
|
|
size_t UTIL_Format(char *buffer, size_t maxlength, const char *fmt, ...);
|
|
|
|
size_t UTIL_DecodeHexString(unsigned char *buffer, size_t maxlength, const char *hexstr);
|
|
|
|
unsigned int strncopy(char *dest, const char *src, size_t count);
|
|
|
|
|
|
|
|
#endif // _INCLUDE_GDC_MAIN_H_
|