#ifndef _NTREGAPI_H
#if (PHNT_VERSION >= PHNT_REDSTONE)
/**
* Creates a registry transaction.
*
* @param RegistryTransactionHandle Pointer to a variable to receive the handle.
* @param DesiredAccess Desired access mask.
* @param ObjAttributes Optional pointer to object attributes.
* @param CreateOptions Reserved for future use.
* @return NTSTATUS Successful or errant status.
*/
NTSTATUS NtCreateRegistryTransaction(
_Out_ HANDLE *RegistryTransactionHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_opt_ POBJECT_ATTRIBUTES ObjAttributes,
_Reserved_ ULONG CreateOptions
);
View code on GitHub
No description available.