amxmodx/dlls/mysqlx/mysql/MysqlHeaders.h

26 lines
726 B
C
Raw Normal View History

2006-04-23 05:10:06 +04:00
#ifndef _INCLUDE_SOURCEMOD_MYSQL_HEADERS_H
#define _INCLUDE_SOURCEMOD_MYSQL_HEADERS_H
2006-04-27 03:54:12 +04: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 05:10:06 +04:00
#include <ISQLDriver.h>
#if defined WIN32 || defined _WIN32
#include <winsock.h>
#endif
typedef unsigned long ulong;
2006-04-23 05:10:06 +04:00
#include <mysql.h>
#endif //_INCLUDE_SOURCEMOD_MYSQL_HEADERS_H