mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 06:14:33 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
14 lines
322 B
C
Vendored
14 lines
322 B
C
Vendored
#if (NTDDI_VERSION >= NTDDI_WINXP)
|
|
struct FLOATSAFE {
|
|
KFLOATING_SAVE FloatSave;
|
|
NTSTATUS ntStatus;
|
|
FLOATSAFE::FLOATSAFE(void) {
|
|
ntStatus = KeSaveFloatingPointState(&FloatSave);
|
|
}
|
|
FLOATSAFE::~FLOATSAFE(void) {
|
|
if (NT_SUCCESS(ntStatus)) {
|
|
KeRestoreFloatingPointState(&FloatSave);
|
|
}
|
|
}
|
|
};
|
|
#endif
|