#ifndef _NTREGAPI_H
/**
* Saves the specified registry key to a file with a specified format.
*
* @param KeyHandle Handle to the registry key.
* @param FileHandle Handle to the file where the key will be saved.
* @param Format Format in which the key will be saved.
* @return NTSTATUS Successful or errant status.
*/
NTSYSCALLAPI
NTSTATUS
NTAPI
NtSaveKeyEx(
_In_ HANDLE KeyHandle,
_In_ HANDLE FileHandle,
_In_ ULONG Format
);
View code on GitHub
#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwSaveKeyEx(
_In_ HANDLE KeyHandle,
_In_ HANDLE FileHandle,
_In_ ULONG Format
);
View code on GitHub
No description available.