18 lines
398 B
C
18 lines
398 B
C
|
#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
|