RtlWriteRegistryValue (NTDLL.@)
NTSTATUS RtlWriteRegistryValue ( ULONG RelativeTo, PCWSTR path, PCWSTR name, ULONG type, PVOID data, ULONG length )
Sets the registry value with provided data.
RelativeTo | [In] | Registry path that path parameter refers to. |
path | [In] | Path to the key (or handle - see RTL_GetKeyHandle). |
name | [In] | Name of the registry value to set. |
type | [In] | Type of the registry key to set. |
data | [In] | Pointer to the user data to be set. |
length | [In] | Length of the user data pointed by data. |
STATUS_SUCCESS if the specified key is successfully set, or an NTSTATUS error code.
Declared in "include/winternl.h". gitlab.winehq.org/wine/wine/blob/master/include/winternl.h
Implemented in "dlls/ntdll/reg.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/reg.c
Debug channel "reg".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.