Core/Misc: fix dynamic linking

This commit is contained in:
ariel-
2017-03-21 01:47:21 -03:00
parent 8be85a5408
commit 8ca1e2d2d0

View File

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