mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 06:45:37 +03:00
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
|