diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-03-21 01:47:21 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-03-21 01:47:21 -0300 |
commit | 8ca1e2d2d0e508f5aa8a9a94594c403ecf15f743 (patch) | |
tree | 30c508273a985c8e2f44305ae4788ef74b109bc3 /src | |
parent | 8be85a54088855b64738e1f1e2bd96b28ccad6b4 (diff) |
Core/Misc: fix dynamic linking
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Motd/ServerMotd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Motd/ServerMotd.h b/src/server/game/Motd/ServerMotd.h index 158ce693b8d..c3ef6fb7dfe 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 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__ |