From b0d26759945f1e1e9d8970b72ba3a95de16acfa3 Mon Sep 17 00:00:00 2001 From: Lynix Date: Sun, 22 Nov 2015 15:53:31 +0100 Subject: [PATCH] Network/Algorithm: Fix external linking Former-commit-id: 7ad005245e1a93d0c2a8981d654dcfce462fcbd7 --- include/Nazara/Network/Algorithm.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/Nazara/Network/Algorithm.hpp b/include/Nazara/Network/Algorithm.hpp index 554f67d37..ec8164ef4 100644 --- a/include/Nazara/Network/Algorithm.hpp +++ b/include/Nazara/Network/Algorithm.hpp @@ -8,12 +8,13 @@ #define NAZARA_ALGORITHM_NETWORK_HPP #include +#include #include #include 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