Fixed dynamic linking (#19341)

This commit is contained in:
Sebastien Levy
2017-03-21 17:19:17 +01:00
committed by Shauren
parent 8ca1e2d2d0
commit 0bfa38e9fc

View File

@@ -25,13 +25,13 @@ class WorldPacket;
namespace Motd
{
/// Set a new Message of the Day
void TC_GAME_API SetMotd(std::string motd);
TC_GAME_API void SetMotd(std::string motd);
/// Get the current Message of the Day
char const* TC_GAME_API GetMotd();
TC_GAME_API char const* GetMotd();
/// Get the motd packet to send at login
WorldPacket const* TC_GAME_API GetMotdPacket();
TC_GAME_API WorldPacket const* GetMotdPacket();
}
#endif //ServerMotd_h__