amxmodx/dlls/mysqlx/module.cpp

24 lines
444 B
C++
Raw Normal View History

2006-04-23 05:10:06 +04:00
#include "amxxmodule.h"
#include "mysql2_header.h"
void OnAmxxAttach()
{
MF_AddNatives(g_BaseSqlNatives);
MF_AddNatives(g_ThreadSqlNatives);
MF_RegisterFunction(&g_Mysql, "GetSqlDriver");
if (!MF_RequestFunction("GetDbDriver"))
{
MF_AddNatives(g_OldCompatNatives);
}
}
void ServerDeactivate_Post()
{
FreeAllHandles(Handle_OldResult);
FreeAllHandles(Handle_OldDb);
FreeAllHandles(Handle_Connection);
2006-04-24 19:14:34 +04:00
RETURN_META(MRES_IGNORED);
2006-04-23 05:10:06 +04:00
}
2006-04-24 19:14:34 +04:00