kernel32: Implement GetXStateFeaturesMask().
Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
541b06747a
commit
85a33ff731
|
@ -1,7 +1,7 @@
|
||||||
@ stub RtlCopyExtendedContext
|
@ stub RtlCopyExtendedContext
|
||||||
@ stdcall RtlGetEnabledExtendedFeatures(int64) ntdll.RtlGetEnabledExtendedFeatures
|
@ stdcall RtlGetEnabledExtendedFeatures(int64) ntdll.RtlGetEnabledExtendedFeatures
|
||||||
@ stdcall RtlGetExtendedContextLength(long ptr) ntdll.RtlGetExtendedContextLength
|
@ stdcall RtlGetExtendedContextLength(long ptr) ntdll.RtlGetExtendedContextLength
|
||||||
@ stub RtlGetExtendedFeaturesMask
|
@ stdcall -ret64 RtlGetExtendedFeaturesMask(ptr) ntdll.RtlGetExtendedFeaturesMask
|
||||||
@ stdcall RtlInitializeExtendedContext(ptr long ptr) ntdll.RtlInitializeExtendedContext
|
@ stdcall RtlInitializeExtendedContext(ptr long ptr) ntdll.RtlInitializeExtendedContext
|
||||||
@ stdcall RtlLocateExtendedFeature(ptr long ptr) ntdll.RtlLocateExtendedFeature
|
@ stdcall RtlLocateExtendedFeature(ptr long ptr) ntdll.RtlLocateExtendedFeature
|
||||||
@ stdcall RtlLocateLegacyContext(ptr ptr) ntdll.RtlLocateLegacyContext
|
@ stdcall RtlLocateLegacyContext(ptr ptr) ntdll.RtlLocateLegacyContext
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@ stub CopyContext
|
@ stub CopyContext
|
||||||
@ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures() kernel32.GetEnabledXStateFeatures
|
@ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures() kernel32.GetEnabledXStateFeatures
|
||||||
@ stub GetXStateFeaturesMask
|
@ stdcall -arch=i386,x86_64 GetXStateFeaturesMask(ptr ptr) kernel32.GetXStateFeaturesMask
|
||||||
@ stdcall -arch=i386,x86_64 InitializeContext(ptr long ptr ptr) kernel32.InitializeContext
|
@ stdcall -arch=i386,x86_64 InitializeContext(ptr long ptr ptr) kernel32.InitializeContext
|
||||||
@ stdcall -arch=i386,x86_64 LocateXStateFeature(ptr long ptr) kernel32.LocateXStateFeature
|
@ stdcall -arch=i386,x86_64 LocateXStateFeature(ptr long ptr) kernel32.LocateXStateFeature
|
||||||
@ stdcall -arch=i386,x86_64 SetXStateFeaturesMask(ptr int64) kernel32.SetXStateFeaturesMask
|
@ stdcall -arch=i386,x86_64 SetXStateFeaturesMask(ptr int64) kernel32.SetXStateFeaturesMask
|
||||||
|
|
|
@ -895,6 +895,7 @@
|
||||||
@ stdcall -import GetWindowsDirectoryA(ptr long)
|
@ stdcall -import GetWindowsDirectoryA(ptr long)
|
||||||
@ stdcall -import GetWindowsDirectoryW(ptr long)
|
@ stdcall -import GetWindowsDirectoryW(ptr long)
|
||||||
@ stdcall -import GetWriteWatch(long ptr long ptr ptr ptr)
|
@ stdcall -import GetWriteWatch(long ptr long ptr ptr ptr)
|
||||||
|
@ stdcall -import -arch=i386,x86_64 GetXStateFeaturesMask(ptr ptr)
|
||||||
@ stdcall -import -arch=i386,x86_64 SetXStateFeaturesMask(ptr int64)
|
@ stdcall -import -arch=i386,x86_64 SetXStateFeaturesMask(ptr int64)
|
||||||
@ stdcall GlobalAddAtomA(str)
|
@ stdcall GlobalAddAtomA(str)
|
||||||
@ stdcall GlobalAddAtomW(wstr)
|
@ stdcall GlobalAddAtomW(wstr)
|
||||||
|
|
|
@ -766,7 +766,7 @@
|
||||||
@ stdcall GetWriteWatch(long ptr long ptr ptr ptr)
|
@ stdcall GetWriteWatch(long ptr long ptr ptr ptr)
|
||||||
# @ stub GetWsChanges
|
# @ stub GetWsChanges
|
||||||
# @ stub GetWsChangesEx
|
# @ stub GetWsChangesEx
|
||||||
# @ stub GetXStateFeaturesMask
|
@ stdcall -arch=i386,x86_64 GetXStateFeaturesMask(ptr ptr)
|
||||||
@ stdcall GlobalAlloc(long long)
|
@ stdcall GlobalAlloc(long long)
|
||||||
@ stdcall GlobalFree(long)
|
@ stdcall GlobalFree(long)
|
||||||
@ stdcall GlobalMemoryStatusEx(ptr)
|
@ stdcall GlobalMemoryStatusEx(ptr)
|
||||||
|
|
|
@ -1280,6 +1280,23 @@ BOOL WINAPI SetXStateFeaturesMask( CONTEXT *context, DWORD64 feature_mask )
|
||||||
RtlSetExtendedFeaturesMask( (CONTEXT_EX *)(context + 1), feature_mask );
|
RtlSetExtendedFeaturesMask( (CONTEXT_EX *)(context + 1), feature_mask );
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* GetXStateFeaturesMask (kernelbase.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI GetXStateFeaturesMask( CONTEXT *context, DWORD64 *feature_mask )
|
||||||
|
{
|
||||||
|
if (!(context->ContextFlags & CONTEXT_AMD64))
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
*feature_mask = (context->ContextFlags & CONTEXT_FLOATING_POINT) == CONTEXT_FLOATING_POINT
|
||||||
|
? 3 : 0;
|
||||||
|
|
||||||
|
if ((context->ContextFlags & CONTEXT_XSTATE) == CONTEXT_XSTATE)
|
||||||
|
*feature_mask |= RtlGetExtendedFeaturesMask( (CONTEXT_EX *)(context + 1) );
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
#elif defined(__i386__)
|
#elif defined(__i386__)
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* LocateXStateFeature (kernelbase.@)
|
* LocateXStateFeature (kernelbase.@)
|
||||||
|
@ -1324,6 +1341,23 @@ BOOL WINAPI SetXStateFeaturesMask( CONTEXT *context, DWORD64 feature_mask )
|
||||||
RtlSetExtendedFeaturesMask( (CONTEXT_EX *)(context + 1), feature_mask );
|
RtlSetExtendedFeaturesMask( (CONTEXT_EX *)(context + 1), feature_mask );
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* GetXStateFeaturesMask (kernelbase.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI GetXStateFeaturesMask( CONTEXT *context, DWORD64 *feature_mask )
|
||||||
|
{
|
||||||
|
if (!(context->ContextFlags & CONTEXT_X86))
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
*feature_mask = (context->ContextFlags & CONTEXT_EXTENDED_REGISTERS) == CONTEXT_EXTENDED_REGISTERS
|
||||||
|
? 3 : 0;
|
||||||
|
|
||||||
|
if ((context->ContextFlags & CONTEXT_XSTATE) == CONTEXT_XSTATE)
|
||||||
|
*feature_mask |= RtlGetExtendedFeaturesMask( (CONTEXT_EX *)(context + 1) );
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
|
|
|
@ -871,3 +871,14 @@ void WINAPI RtlSetExtendedFeaturesMask( CONTEXT_EX *context_ex, ULONG64 feature_
|
||||||
|
|
||||||
xs->Mask = RtlGetEnabledExtendedFeatures( feature_mask ) & ~(ULONG64)3;
|
xs->Mask = RtlGetEnabledExtendedFeatures( feature_mask ) & ~(ULONG64)3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* RtlGetExtendedFeaturesMask (NTDLL.@)
|
||||||
|
*/
|
||||||
|
ULONG64 WINAPI RtlGetExtendedFeaturesMask( CONTEXT_EX *context_ex )
|
||||||
|
{
|
||||||
|
XSTATE *xs = (XSTATE *)((BYTE *)context_ex + context_ex->XState.Offset);
|
||||||
|
|
||||||
|
return xs->Mask & ~(ULONG64)3;
|
||||||
|
}
|
||||||
|
|
|
@ -697,6 +697,7 @@
|
||||||
@ stdcall RtlGetExePath(wstr ptr)
|
@ stdcall RtlGetExePath(wstr ptr)
|
||||||
@ stdcall RtlGetExtendedContextLength(long ptr)
|
@ stdcall RtlGetExtendedContextLength(long ptr)
|
||||||
@ stdcall RtlGetExtendedContextLength2(long ptr int64)
|
@ stdcall RtlGetExtendedContextLength2(long ptr int64)
|
||||||
|
@ stdcall -ret64 RtlGetExtendedFeaturesMask(ptr)
|
||||||
# @ stub RtlGetFirstRange
|
# @ stub RtlGetFirstRange
|
||||||
@ stdcall RtlGetFrame()
|
@ stdcall RtlGetFrame()
|
||||||
@ stdcall RtlGetFullPathName_U(wstr long ptr ptr)
|
@ stdcall RtlGetFullPathName_U(wstr long ptr ptr)
|
||||||
|
|
|
@ -54,6 +54,7 @@ static NTSTATUS (WINAPI *pRtlInitializeExtendedContext2)(void *context, ULONG c
|
||||||
static void * (WINAPI *pRtlLocateExtendedFeature)(CONTEXT_EX *context_ex, ULONG feature_id, ULONG *length);
|
static void * (WINAPI *pRtlLocateExtendedFeature)(CONTEXT_EX *context_ex, ULONG feature_id, ULONG *length);
|
||||||
static void * (WINAPI *pRtlLocateLegacyContext)(CONTEXT_EX *context_ex, ULONG *length);
|
static void * (WINAPI *pRtlLocateLegacyContext)(CONTEXT_EX *context_ex, ULONG *length);
|
||||||
static void (WINAPI *pRtlSetExtendedFeaturesMask)(CONTEXT_EX *context_ex, ULONG64 feature_mask);
|
static void (WINAPI *pRtlSetExtendedFeaturesMask)(CONTEXT_EX *context_ex, ULONG64 feature_mask);
|
||||||
|
static ULONG64 (WINAPI *pRtlGetExtendedFeaturesMask)(CONTEXT_EX *context_ex);
|
||||||
static NTSTATUS (WINAPI *pNtReadVirtualMemory)(HANDLE, const void*, void*, SIZE_T, SIZE_T*);
|
static NTSTATUS (WINAPI *pNtReadVirtualMemory)(HANDLE, const void*, void*, SIZE_T, SIZE_T*);
|
||||||
static NTSTATUS (WINAPI *pNtTerminateProcess)(HANDLE handle, LONG exit_code);
|
static NTSTATUS (WINAPI *pNtTerminateProcess)(HANDLE handle, LONG exit_code);
|
||||||
static NTSTATUS (WINAPI *pNtQueryInformationProcess)(HANDLE, PROCESSINFOCLASS, PVOID, ULONG, PULONG);
|
static NTSTATUS (WINAPI *pNtQueryInformationProcess)(HANDLE, PROCESSINFOCLASS, PVOID, ULONG, PULONG);
|
||||||
|
@ -69,6 +70,7 @@ static BOOL (WINAPI *pInitializeContext2)(void *buffer, DWORD context_flags
|
||||||
DWORD *length, ULONG64 compaction_mask);
|
DWORD *length, ULONG64 compaction_mask);
|
||||||
static void * (WINAPI *pLocateXStateFeature)(CONTEXT *context, DWORD feature_id, DWORD *length);
|
static void * (WINAPI *pLocateXStateFeature)(CONTEXT *context, DWORD feature_id, DWORD *length);
|
||||||
static BOOL (WINAPI *pSetXStateFeaturesMask)(CONTEXT *context, DWORD64 feature_mask);
|
static BOOL (WINAPI *pSetXStateFeaturesMask)(CONTEXT *context, DWORD64 feature_mask);
|
||||||
|
static BOOL (WINAPI *pGetXStateFeaturesMask)(CONTEXT *context, DWORD64 *feature_mask);
|
||||||
|
|
||||||
#define RTL_UNLOAD_EVENT_TRACE_NUMBER 64
|
#define RTL_UNLOAD_EVENT_TRACE_NUMBER 64
|
||||||
|
|
||||||
|
@ -6197,6 +6199,7 @@ static void test_extended_context(void)
|
||||||
ULONG flags, flags_fpx;
|
ULONG flags, flags_fpx;
|
||||||
CONTEXT *context;
|
CONTEXT *context;
|
||||||
unsigned data[8];
|
unsigned data[8];
|
||||||
|
ULONG64 mask;
|
||||||
XSTATE *xs;
|
XSTATE *xs;
|
||||||
BOOL bret;
|
BOOL bret;
|
||||||
void *p;
|
void *p;
|
||||||
|
@ -6326,14 +6329,29 @@ static void test_extended_context(void)
|
||||||
if (0)
|
if (0)
|
||||||
{
|
{
|
||||||
/* Crashes on Windows. */
|
/* Crashes on Windows. */
|
||||||
|
pGetXStateFeaturesMask(context, NULL);
|
||||||
|
pRtlGetExtendedFeaturesMask(context_ex);
|
||||||
pRtlSetExtendedFeaturesMask(context_ex, 0);
|
pRtlSetExtendedFeaturesMask(context_ex, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
flags_fpx = flags & 0x10000 ? flags | 0x20 : flags | 0x8;
|
||||||
|
|
||||||
|
mask = 0xdeadbeef;
|
||||||
|
bret = pGetXStateFeaturesMask(context, &mask);
|
||||||
|
SetLastError(0xdeadbeef);
|
||||||
|
if (flags & CONTEXT_NATIVE)
|
||||||
|
ok(bret && mask == ((flags & flags_fpx) == flags_fpx ? 0x3 : 0),
|
||||||
|
"Got unexpected bret %#x, mask %s, flags %#x.\n", bret, wine_dbgstr_longlong(mask), flags);
|
||||||
|
else
|
||||||
|
ok(!bret && mask == 0xdeadbeef && GetLastError() == 0xdeadbeef,
|
||||||
|
"Got unexpected bret %#x, mask %s, GetLastError() %#x, flags %#x.\n",
|
||||||
|
bret, wine_dbgstr_longlong(mask), GetLastError(), flags);
|
||||||
|
|
||||||
bret = pSetXStateFeaturesMask(context, 0);
|
bret = pSetXStateFeaturesMask(context, 0);
|
||||||
ok(bret == !!(flags & CONTEXT_NATIVE), "Got unexpected bret %#x, flags %#x.\n", bret, flags);
|
ok(bret == !!(flags & CONTEXT_NATIVE), "Got unexpected bret %#x, flags %#x.\n", bret, flags);
|
||||||
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
||||||
ok(context_flags == flags, "Got unexpected ContextFlags %#x, flags %#x.\n", context_flags, flags);
|
ok(context_flags == flags, "Got unexpected ContextFlags %#x, flags %#x.\n", context_flags, flags);
|
||||||
|
|
||||||
flags_fpx = flags & 0x10000 ? flags | 0x20 : flags | 0x8;
|
|
||||||
bret = pSetXStateFeaturesMask(context, 1);
|
bret = pSetXStateFeaturesMask(context, 1);
|
||||||
ok(bret == !!(flags & CONTEXT_NATIVE), "Got unexpected bret %#x, flags %#x.\n", bret, flags);
|
ok(bret == !!(flags & CONTEXT_NATIVE), "Got unexpected bret %#x, flags %#x.\n", bret, flags);
|
||||||
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
||||||
|
@ -6624,8 +6642,19 @@ static void test_extended_context(void)
|
||||||
else
|
else
|
||||||
ok(!p && length2 == 0xdeadbeef, "Got unexpected p %p, length %#x, flags %#x.\n", p, length2, flags);
|
ok(!p && length2 == 0xdeadbeef, "Got unexpected p %p, length %#x, flags %#x.\n", p, length2, flags);
|
||||||
|
|
||||||
|
mask = 0xdeadbeef;
|
||||||
|
bret = pGetXStateFeaturesMask(context, &mask);
|
||||||
|
if (flags & CONTEXT_NATIVE)
|
||||||
|
ok(bret && !mask,
|
||||||
|
"Got unexpected bret %#x, mask %s, flags %#x.\n", bret, wine_dbgstr_longlong(mask), flags);
|
||||||
|
else
|
||||||
|
ok(!bret && mask == 0xdeadbeef,
|
||||||
|
"Got unexpected bret %#x, mask %s, flags %#x.\n", bret, wine_dbgstr_longlong(mask), flags);
|
||||||
|
|
||||||
expected_compaction = compaction_enabled ? ((ULONG64)1 << 63) | enabled_features : 0;
|
expected_compaction = compaction_enabled ? ((ULONG64)1 << 63) | enabled_features : 0;
|
||||||
ok(!xs->Mask, "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
ok(!xs->Mask, "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
||||||
|
mask = pRtlGetExtendedFeaturesMask(context_ex);
|
||||||
|
ok(mask == (xs->Mask & ~(ULONG64)3), "Got unexpected mask %s.\n", wine_dbgstr_longlong(mask));
|
||||||
ok(xs->CompactionMask == expected_compaction,
|
ok(xs->CompactionMask == expected_compaction,
|
||||||
"Got unexpected CompactionMask %s.\n", wine_dbgstr_longlong(xs->CompactionMask));
|
"Got unexpected CompactionMask %s.\n", wine_dbgstr_longlong(xs->CompactionMask));
|
||||||
ok(!xs->Reserved[0], "Got unexpected Reserved[0] %s.\n", wine_dbgstr_longlong(xs->Reserved[0]));
|
ok(!xs->Reserved[0], "Got unexpected Reserved[0] %s.\n", wine_dbgstr_longlong(xs->Reserved[0]));
|
||||||
|
@ -6634,6 +6663,8 @@ static void test_extended_context(void)
|
||||||
xs->CompactionMask = 0xdeadbeef;
|
xs->CompactionMask = 0xdeadbeef;
|
||||||
pRtlSetExtendedFeaturesMask(context_ex, 0);
|
pRtlSetExtendedFeaturesMask(context_ex, 0);
|
||||||
ok(!xs->Mask, "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
ok(!xs->Mask, "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
||||||
|
mask = pRtlGetExtendedFeaturesMask(context_ex);
|
||||||
|
ok(mask == (xs->Mask & ~(ULONG64)3), "Got unexpected mask %s.\n", wine_dbgstr_longlong(mask));
|
||||||
ok(xs->CompactionMask == 0xdeadbeef, "Got unexpected CompactionMask %s.\n", wine_dbgstr_longlong(xs->CompactionMask));
|
ok(xs->CompactionMask == 0xdeadbeef, "Got unexpected CompactionMask %s.\n", wine_dbgstr_longlong(xs->CompactionMask));
|
||||||
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
||||||
ok(context_flags == flags, "Got unexpected ContextFlags %#x, flags %#x.\n", context->ContextFlags, flags);
|
ok(context_flags == flags, "Got unexpected ContextFlags %#x, flags %#x.\n", context->ContextFlags, flags);
|
||||||
|
@ -6642,6 +6673,8 @@ static void test_extended_context(void)
|
||||||
xs->CompactionMask = 0;
|
xs->CompactionMask = 0;
|
||||||
pRtlSetExtendedFeaturesMask(context_ex, ~(ULONG64)0);
|
pRtlSetExtendedFeaturesMask(context_ex, ~(ULONG64)0);
|
||||||
ok(xs->Mask == (enabled_features & ~(ULONG64)3), "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
ok(xs->Mask == (enabled_features & ~(ULONG64)3), "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
||||||
|
mask = pRtlGetExtendedFeaturesMask(context_ex);
|
||||||
|
ok(mask == (xs->Mask & ~(ULONG64)3), "Got unexpected mask %s.\n", wine_dbgstr_longlong(mask));
|
||||||
ok(!xs->CompactionMask, "Got unexpected CompactionMask %s.\n",
|
ok(!xs->CompactionMask, "Got unexpected CompactionMask %s.\n",
|
||||||
wine_dbgstr_longlong(xs->CompactionMask));
|
wine_dbgstr_longlong(xs->CompactionMask));
|
||||||
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
context_flags = *(DWORD *)(context_buffer + context_arch[test].flags_offset);
|
||||||
|
@ -6655,9 +6688,20 @@ static void test_extended_context(void)
|
||||||
ok(context_flags == (bret ? flags_fpx : flags),
|
ok(context_flags == (bret ? flags_fpx : flags),
|
||||||
"Got unexpected ContextFlags %#x, flags %#x.\n", context_flags, flags);
|
"Got unexpected ContextFlags %#x, flags %#x.\n", context_flags, flags);
|
||||||
ok(xs->Mask == bret ? 4 : 0xdeadbeef, "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
ok(xs->Mask == bret ? 4 : 0xdeadbeef, "Got unexpected Mask %s.\n", wine_dbgstr_longlong(xs->Mask));
|
||||||
|
mask = pRtlGetExtendedFeaturesMask(context_ex);
|
||||||
|
ok(mask == (xs->Mask & ~(ULONG64)3), "Got unexpected mask %s.\n", wine_dbgstr_longlong(mask));
|
||||||
ok(xs->CompactionMask == bret ? expected_compaction : 0xdeadbeef, "Got unexpected CompactionMask %s.\n",
|
ok(xs->CompactionMask == bret ? expected_compaction : 0xdeadbeef, "Got unexpected CompactionMask %s.\n",
|
||||||
wine_dbgstr_longlong(xs->CompactionMask));
|
wine_dbgstr_longlong(xs->CompactionMask));
|
||||||
|
|
||||||
|
mask = 0xdeadbeef;
|
||||||
|
bret = pGetXStateFeaturesMask(context, &mask);
|
||||||
|
if (flags & CONTEXT_NATIVE)
|
||||||
|
ok(bret && mask == enabled_features,
|
||||||
|
"Got unexpected bret %#x, mask %s, flags %#x.\n", bret, wine_dbgstr_longlong(mask), flags);
|
||||||
|
else
|
||||||
|
ok(!bret && mask == 0xdeadbeef,
|
||||||
|
"Got unexpected bret %#x, mask %s, flags %#x.\n", bret, wine_dbgstr_longlong(mask), flags);
|
||||||
|
|
||||||
if (pRtlGetExtendedContextLength2)
|
if (pRtlGetExtendedContextLength2)
|
||||||
{
|
{
|
||||||
memset(context_buffer, 0xcc, sizeof(context_buffer));
|
memset(context_buffer, 0xcc, sizeof(context_buffer));
|
||||||
|
@ -6820,6 +6864,7 @@ START_TEST(exception)
|
||||||
X(RtlLocateExtendedFeature);
|
X(RtlLocateExtendedFeature);
|
||||||
X(RtlLocateLegacyContext);
|
X(RtlLocateLegacyContext);
|
||||||
X(RtlSetExtendedFeaturesMask);
|
X(RtlSetExtendedFeaturesMask);
|
||||||
|
X(RtlGetExtendedFeaturesMask);
|
||||||
#undef X
|
#undef X
|
||||||
|
|
||||||
#define X(f) p##f = (void*)GetProcAddress(hkernel32, #f)
|
#define X(f) p##f = (void*)GetProcAddress(hkernel32, #f)
|
||||||
|
@ -6830,6 +6875,7 @@ START_TEST(exception)
|
||||||
X(InitializeContext2);
|
X(InitializeContext2);
|
||||||
X(LocateXStateFeature);
|
X(LocateXStateFeature);
|
||||||
X(SetXStateFeaturesMask);
|
X(SetXStateFeaturesMask);
|
||||||
|
X(GetXStateFeaturesMask);
|
||||||
#undef X
|
#undef X
|
||||||
|
|
||||||
if (pRtlAddVectoredExceptionHandler && pRtlRemoveVectoredExceptionHandler)
|
if (pRtlAddVectoredExceptionHandler && pRtlRemoveVectoredExceptionHandler)
|
||||||
|
|
|
@ -1235,6 +1235,7 @@
|
||||||
@ stdcall RtlSetBits(ptr long long)
|
@ stdcall RtlSetBits(ptr long long)
|
||||||
@ stdcall RtlSetControlSecurityDescriptor(ptr long long)
|
@ stdcall RtlSetControlSecurityDescriptor(ptr long long)
|
||||||
@ stdcall RtlSetDaclSecurityDescriptor(ptr long ptr long)
|
@ stdcall RtlSetDaclSecurityDescriptor(ptr long ptr long)
|
||||||
|
@ stdcall -ret64 RtlGetExtendedFeaturesMask(ptr)
|
||||||
@ stdcall RtlSetExtendedFeaturesMask(ptr int64)
|
@ stdcall RtlSetExtendedFeaturesMask(ptr int64)
|
||||||
@ stdcall RtlSetGroupSecurityDescriptor(ptr ptr long)
|
@ stdcall RtlSetGroupSecurityDescriptor(ptr ptr long)
|
||||||
@ stdcall RtlSetOwnerSecurityDescriptor(ptr ptr long)
|
@ stdcall RtlSetOwnerSecurityDescriptor(ptr ptr long)
|
||||||
|
|
|
@ -1845,6 +1845,7 @@ NTSTATUS WINAPI RtlGetExtendedContextLength2(ULONG,ULONG*,ULONG64);
|
||||||
void * WINAPI RtlLocateLegacyContext(CONTEXT_EX*,ULONG*);
|
void * WINAPI RtlLocateLegacyContext(CONTEXT_EX*,ULONG*);
|
||||||
void * WINAPI RtlLocateExtendedFeature(CONTEXT_EX*,ULONG,ULONG*);
|
void * WINAPI RtlLocateExtendedFeature(CONTEXT_EX*,ULONG,ULONG*);
|
||||||
void * WINAPI RtlLocateExtendedFeature2(CONTEXT_EX*,ULONG,XSTATE_CONFIGURATION*,ULONG*);
|
void * WINAPI RtlLocateExtendedFeature2(CONTEXT_EX*,ULONG,XSTATE_CONFIGURATION*,ULONG*);
|
||||||
|
ULONG64 WINAPI RtlGetExtendedFeaturesMask(CONTEXT_EX*);
|
||||||
void WINAPI RtlSetExtendedFeaturesMask(CONTEXT_EX*,ULONG64);
|
void WINAPI RtlSetExtendedFeaturesMask(CONTEXT_EX*,ULONG64);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -2337,6 +2337,7 @@ WINBASEAPI UINT WINAPI GetWindowsDirectoryA(LPSTR,UINT);
|
||||||
WINBASEAPI UINT WINAPI GetWindowsDirectoryW(LPWSTR,UINT);
|
WINBASEAPI UINT WINAPI GetWindowsDirectoryW(LPWSTR,UINT);
|
||||||
#define GetWindowsDirectory WINELIB_NAME_AW(GetWindowsDirectory)
|
#define GetWindowsDirectory WINELIB_NAME_AW(GetWindowsDirectory)
|
||||||
WINBASEAPI UINT WINAPI GetWriteWatch(DWORD,LPVOID,SIZE_T,LPVOID*,ULONG_PTR*,ULONG*);
|
WINBASEAPI UINT WINAPI GetWriteWatch(DWORD,LPVOID,SIZE_T,LPVOID*,ULONG_PTR*,ULONG*);
|
||||||
|
WINBASEAPI BOOL WINAPI GetXStateFeaturesMask(CONTEXT*,DWORD64*);
|
||||||
WINBASEAPI ATOM WINAPI GlobalAddAtomA(LPCSTR);
|
WINBASEAPI ATOM WINAPI GlobalAddAtomA(LPCSTR);
|
||||||
WINBASEAPI ATOM WINAPI GlobalAddAtomW(LPCWSTR);
|
WINBASEAPI ATOM WINAPI GlobalAddAtomW(LPCWSTR);
|
||||||
#define GlobalAddAtom WINELIB_NAME_AW(GlobalAddAtom)
|
#define GlobalAddAtom WINELIB_NAME_AW(GlobalAddAtom)
|
||||||
|
|
Loading…
Reference in New Issue