diff options
Diffstat (limited to 'win/inspircd_win32wrapper.cpp')
-rw-r--r-- | win/inspircd_win32wrapper.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win/inspircd_win32wrapper.cpp b/win/inspircd_win32wrapper.cpp index f42fa6479..cece56344 100644 --- a/win/inspircd_win32wrapper.cpp +++ b/win/inspircd_win32wrapper.cpp @@ -46,6 +46,7 @@ int inet_aton(const char *cp, struct in_addr *addr) return (addr->s_addr == INADDR_NONE) ? 0 : 1; } +#if !defined(NTDDI_VERSION) || (NTDDI_VERSION < NTDDI_LONGHORN) const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt) { @@ -69,12 +70,14 @@ const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt) } return NULL; } +#endif int geteuid() { return 1; } +#if !defined(NTDDI_VERSION) || (NTDDI_VERSION < NTDDI_LONGHORN) int inet_pton(int af, const char *src, void *dst) { sockaddr_in sa; @@ -90,6 +93,7 @@ int inet_pton(int af, const char *src, void *dst) memcpy(dst, &sa.sin_addr, sizeof(struct in_addr)); return rv; } +#endif void setcolor(int color_code) { |