#ifndef _NTREGAPI_H
/**
* Freezes the registry and prevents changes from being flushed to disk.
*
* @param TimeOutInSeconds Timeout in seconds.
* @return NTSTATUS Successful or errant status.
*/
NTSYSCALLAPI
NTSTATUS
NTAPI
NtFreezeRegistry(
_In_ ULONG TimeOutInSeconds
);
View code on GitHub#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwFreezeRegistry(
_In_ ULONG TimeOutInSeconds
);
View code on GitHubNo description available.