Network/Algorithm: Fix external linking

Former-commit-id: 7ad005245e1a93d0c2a8981d654dcfce462fcbd7
This commit is contained in:
Lynix 2015-11-22 15:53:31 +01:00
parent c93e4e901e
commit b0d2675994
1 changed files with 2 additions and 1 deletions

View File

@ -8,12 +8,13 @@
#define NAZARA_ALGORITHM_NETWORK_HPP
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Network/Config.hpp>
#include <functional>
#include <tuple>
namespace Nz
{
bool ParseIPAddress(const char* addressPtr, UInt8 result[16], UInt16* port = nullptr, bool* isIPv6 = nullptr, const char** endOfRead = nullptr);
NAZARA_NETWORK_API bool ParseIPAddress(const char* addressPtr, UInt8 result[16], UInt16* port = nullptr, bool* isIPv6 = nullptr, const char** endOfRead = nullptr);
}
#include <Nazara/Network/Algorithm.inl>