1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-09 03:00:41 +03:00

Merge PR #590: Fix compilation with Visual Studio 2017's toolchain

This commit is contained in:
Davide Beatrici 2018-07-30 21:21:20 +02:00 committed by GitHub
commit a99a9351e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 10 deletions

View File

@ -123,6 +123,7 @@
#define _WIN32_WINNT 0x0502
#define WINVER 0x0502
#define SECURITY_WIN32
#include <winsock2.h>
#include <windows.h>
#include <Iphlpapi.h>
@ -136,6 +137,7 @@
#include <psapi.h>
#include <wtsapi32.h>
#include <Ntsecapi.h>
#include <security.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -2201,9 +2201,9 @@ UNI_TOKEN_LIST *UniParseToken(wchar_t *src, wchar_t *separator)
wchar_t *str1, *str2;
UINT len, num;
#ifdef OS_UNIX
#if (!defined _MSC_VER) || (_MSC_VER >= 1900)
wchar_t *state = NULL;
#endif // OS_UNIX
#endif // (!defined _MSC_VER) || (_MSC_VER >= 1900)
// Validate arguments
if (src == NULL)
@ -2225,18 +2225,18 @@ UNI_TOKEN_LIST *UniParseToken(wchar_t *src, wchar_t *separator)
Lock(token_lock);
{
tmp = wcstok(str1, separator
#ifdef OS_UNIX
#if (!defined _MSC_VER) || (_MSC_VER >= 1900)
, &state
#endif // OS_UNIX
#endif // (!defined _MSC_VER) || (_MSC_VER >= 1900)
);
num = 0;
while (tmp != NULL)
{
num++;
tmp = wcstok(NULL, separator
#ifdef OS_UNIX
#if (!defined _MSC_VER) || (_MSC_VER >= 1900)
, &state
#endif // OS_UNIX
#endif // (!defined _MSC_VER) || (_MSC_VER >= 1900)
);
}
ret = Malloc(sizeof(UNI_TOKEN_LIST));
@ -2244,9 +2244,9 @@ UNI_TOKEN_LIST *UniParseToken(wchar_t *src, wchar_t *separator)
ret->Token = (wchar_t **)Malloc(sizeof(wchar_t *) * num);
num = 0;
tmp = wcstok(str2, separator
#ifdef OS_UNIX
#if (!defined _MSC_VER) || (_MSC_VER >= 1900)
, &state
#endif // OS_UNIX
#endif // (!defined _MSC_VER) || (_MSC_VER >= 1900)
);
while (tmp != NULL)
{
@ -2254,9 +2254,9 @@ UNI_TOKEN_LIST *UniParseToken(wchar_t *src, wchar_t *separator)
UniStrCpy(ret->Token[num], 0, tmp);
num++;
tmp = wcstok(NULL, separator
#ifdef OS_UNIX
#if (!defined _MSC_VER) || (_MSC_VER >= 1900)
, &state
#endif // OS_UNIX
#endif // (!defined _MSC_VER) || (_MSC_VER >= 1900)
);
}
}