Former-commit-id: 0a246d26e2ea13acec4bcf00a48f5bec3e4f8c7f
This commit is contained in:
Lynix 2015-11-23 18:22:15 +01:00
commit c6d16c0128
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>