mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
* initial work * fix query * load * clean up * remove from startup * ACE * remove static * Update MySQLThreading.cpp * not used * Update MySQLThreading.cpp * unit testing * Update WorldMock.h * show Boost ver * Update WorldMock.h * include * Now we have boost::filesystem woo * fix build * fix typo
20 lines
376 B
C++
20 lines
376 B
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#ifndef _MYSQLTHREADING_H
|
|
#define _MYSQLTHREADING_H
|
|
|
|
#include "Log.h"
|
|
|
|
namespace MySQL
|
|
{
|
|
void Library_Init();
|
|
void Library_End();
|
|
uint32 GetLibraryVersion();
|
|
}
|
|
|
|
#endif
|