MSVC8 Project File + SDK Update

This commit is contained in:
Scott Ehlert
2006-04-26 23:54:12 +00:00
parent b65b8a1cf0
commit 2ca42b7b21
6 changed files with 520 additions and 11 deletions

View File

@ -1,6 +1,20 @@
#ifndef _INCLUDE_SOURCEMOD_MYSQL_HEADERS_H
#define _INCLUDE_SOURCEMOD_MYSQL_HEADERS_H
#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
#include <ISQLDriver.h>
#if defined WIN32 || defined _WIN32
#include <winsock.h>