added new (somewhat experimental) mysql extension and finalized the API

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40868
This commit is contained in:
David Anderson
2007-05-30 03:25:18 +00:00
parent 1dffe2e648
commit 11470d81ca
22 changed files with 3152 additions and 0 deletions
+3
View File
@@ -14,6 +14,7 @@
#include "Database.h"
#include "HandleSys.h"
#include "ShareSys.h"
#include "sourcemod.h"
DBManager g_DBMan;
@@ -28,6 +29,8 @@ void DBManager::OnSourceModAllInitialized()
m_DriverType = g_HandleSys.CreateType("IDriver", this, 0, NULL, &sec, g_pCoreIdent, NULL);
m_DatabaseType = g_HandleSys.CreateType("IDatabase", this, 0, NULL, NULL, g_pCoreIdent, NULL);
g_ShareSys.AddInterface(NULL, this);
}
void DBManager::OnSourceModShutdown()