aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Levy <troctsch.cpp@gmail.com>2017-03-21 17:19:17 +0100
committerShauren <shauren.trinity@gmail.com>2017-03-21 17:19:17 +0100
commit0bfa38e9fcc385db0ebf49b404e6356aea40c4ba (patch)
treeda880367c645ef45cc39237163f5577b307a3d61 /src
parent8ca1e2d2d0e508f5aa8a9a94594c403ecf15f743 (diff)
Fixed dynamic linking (#19341)
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Motd/ServerMotd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Motd/ServerMotd.h b/src/server/game/Motd/ServerMotd.h
index c3ef6fb7dfe..1e3c5edf231 100644
--- a/src/server/game/Motd/ServerMotd.h
+++ b/src/server/game/Motd/ServerMotd.h
@@ -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__