mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:41:42 +00:00
[XDK/DDK]
Add KeSaveFloatingPointState as well svn path=/trunk/; revision=53401
This commit is contained in:
parent
83d9580f60
commit
83a29c33af
3 changed files with 24 additions and 0 deletions
|
@ -7944,6 +7944,14 @@ KeGetCurrentThread(VOID)
|
|||
return (struct _KTHREAD *)__readgsqword(0x188);
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
NTSTATUS
|
||||
KeSaveFloatingPointState(PVOID FloatingState)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(FloatingState);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
NTSTATUS
|
||||
KeRestoreFloatingPointState(PVOID FloatingState)
|
||||
|
|
|
@ -195,6 +195,14 @@ struct _KTHREAD*
|
|||
NTAPI
|
||||
KeGetCurrentThread(VOID);
|
||||
|
||||
FORCEINLINE
|
||||
NTSTATUS
|
||||
KeSaveFloatingPointState(PVOID FloatingState)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(FloatingState);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
NTSTATUS
|
||||
KeRestoreFloatingPointState(PVOID FloatingState)
|
||||
|
|
|
@ -111,6 +111,14 @@ KeGetCurrentThread(VOID)
|
|||
return (struct _KTHREAD *)__readgsqword(0x188);
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
NTSTATUS
|
||||
KeSaveFloatingPointState(PVOID FloatingState)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(FloatingState);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
NTSTATUS
|
||||
KeRestoreFloatingPointState(PVOID FloatingState)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue