initial import

This commit is contained in:
David Anderson
2006-04-23 01:10:06 +00:00
parent 3ba923e4c0
commit 27d8cde394
38 changed files with 11324 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#ifndef _INCLUDE_SOURCEMOD_MYSQL_DRIVER_H
#define _INCLUDE_SOURCEMOD_MYSQL_DRIVER_H
#include "MysqlHeaders.h"
namespace SourceMod
{
class MysqlDriver : public ISQLDriver
{
public:
IDatabase *Connect(DatabaseInfo *info, int *errcode, char *error, size_t maxlength);
const char *NameString();
bool IsCompatDriver(const char *namestring);
};
};
#endif //_INCLUDE_SOURCEMOD_MYSQL_DRIVER_H