mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-01-02 03:49:44 -06:00
Windows Driver: Fix build error using Windows 10 WDK caused by name conflict for KeSaveExtendedProcessorState/KeRestoreExtendedProcessorState functions
This commit is contained in:
@@ -363,7 +363,7 @@ static void ComputeBootLoaderFingerprint(PDEVICE_OBJECT LowerDeviceObject, byte*
|
||||
#ifdef _WIN64
|
||||
XSTATE_SAVE SaveState;
|
||||
if (g_isIntel && HasSAVX())
|
||||
saveStatus = KeSaveExtendedProcessorState(XSTATE_MASK_GSSE, &SaveState);
|
||||
saveStatus = KeSaveExtendedProcessorStateVC(XSTATE_MASK_GSSE, &SaveState);
|
||||
#else
|
||||
KFLOATING_SAVE floatingPointState;
|
||||
if (HasISSE() || (HasSSSE3() && HasMMX()))
|
||||
@@ -405,7 +405,7 @@ static void ComputeBootLoaderFingerprint(PDEVICE_OBJECT LowerDeviceObject, byte*
|
||||
|
||||
if (NT_SUCCESS (saveStatus))
|
||||
#ifdef _WIN64
|
||||
KeRestoreExtendedProcessorState(&SaveState);
|
||||
KeRestoreExtendedProcessorStateVC(&SaveState);
|
||||
#else
|
||||
KeRestoreFloatingPointState (&floatingPointState);
|
||||
#endif
|
||||
|
||||
@@ -4940,7 +4940,7 @@ BOOL IsOSAtLeast (OSVersionEnum reqMinOS)
|
||||
>= (major << 16 | minor << 8));
|
||||
}
|
||||
|
||||
NTSTATUS NTAPI KeSaveExtendedProcessorState (
|
||||
NTSTATUS NTAPI KeSaveExtendedProcessorStateVC (
|
||||
__in ULONG64 Mask,
|
||||
PXSTATE_SAVE XStateSave
|
||||
)
|
||||
@@ -4955,7 +4955,7 @@ NTSTATUS NTAPI KeSaveExtendedProcessorState (
|
||||
}
|
||||
}
|
||||
|
||||
VOID NTAPI KeRestoreExtendedProcessorState (
|
||||
VOID NTAPI KeRestoreExtendedProcessorStateVC (
|
||||
PXSTATE_SAVE XStateSave
|
||||
)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user