2006-04-23 01:10:06 +00:00
|
|
|
#ifndef _INCLUDE_SOURCEMOD_MYSQL_HEADERS_H
|
|
|
|
#define _INCLUDE_SOURCEMOD_MYSQL_HEADERS_H
|
|
|
|
|
2006-04-26 23:54:12 +00:00
|
|
|
#if _MSC_VER >= 1400
|
|
|
|
/* Disable deprecation warnings concerning unsafe CRT functions */
|
|
|
|
#if !defined _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Replace the POSIX function with ISO C++ conformant ones as they are now deprecated */
|
|
|
|
#define strnicmp _strnicmp
|
|
|
|
|
|
|
|
/* Disable deprecation warnings because MSVC8 seemingly thinks the ISO C++ conformant
|
|
|
|
* functions above are deprecated. */
|
|
|
|
#pragma warning (disable:4996)
|
|
|
|
#endif
|
|
|
|
|
2006-04-23 01:10:06 +00:00
|
|
|
#include <ISQLDriver.h>
|
|
|
|
#if defined WIN32 || defined _WIN32
|
|
|
|
#include <winsock.h>
|
|
|
|
#endif
|
2007-10-22 21:31:02 +00:00
|
|
|
typedef unsigned long ulong;
|
2006-04-23 01:10:06 +00:00
|
|
|
#include <mysql.h>
|
|
|
|
|
|
|
|
#endif //_INCLUDE_SOURCEMOD_MYSQL_HEADERS_H
|