mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[CRT_APITEST] Fix version check
This commit is contained in:
parent
a54be9726d
commit
f68d8d5459
1 changed files with 6 additions and 1 deletions
|
@ -11,6 +11,8 @@
|
|||
#include <pseh/pseh2.h>
|
||||
#include <ndk/mmfuncs.h>
|
||||
|
||||
ULONG g_WinVersion;
|
||||
|
||||
/*
|
||||
* cmp functions can either return 1/-1 or the actual difference between the
|
||||
* first two differing characters.
|
||||
|
@ -20,7 +22,7 @@
|
|||
#ifdef TEST_CRTDLL
|
||||
#define RETURN_DIFF 0
|
||||
#else
|
||||
#define RETURN_DIFF (GetVersion() >= 0x0600)
|
||||
#define RETURN_DIFF (g_WinVersion >= _WIN32_WINNT_VISTA)
|
||||
#endif
|
||||
|
||||
#define DIFF_RETURN(sign, absolute) (sign (RETURN_DIFF ? absolute : 1))
|
||||
|
@ -29,6 +31,9 @@ START_TEST(_mbsncmp)
|
|||
{
|
||||
int ret;
|
||||
|
||||
ULONG Version = GetVersion();
|
||||
g_WinVersion = (Version & 0xFF) << 8 | (Version & 0xFF00) >> 8;
|
||||
|
||||
/* Zero length always returns true */
|
||||
ret = _mbsncmp(NULL, NULL, 0);
|
||||
ok(ret == 0, "ret = %d\n", ret);
|
||||
|
|
Loading…
Reference in a new issue