RtlWriteRegistryValue.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

RtlWriteRegistryValue (NTDLL.@)

SYNOPSIS

NTSTATUS RtlWriteRegistryValue
 (
  ULONG  RelativeTo,
  PCWSTR path,
  PCWSTR name,
  ULONG  type,
  PVOID  data,
  ULONG  length
 )

DESCRIPTION

Sets the registry value with provided data.

PARAMS

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.

RETURNS

STATUS_SUCCESS if the specified key is successfully set, or an NTSTATUS error code.

IMPLEMENTATION

Defined in "winternl.h".

Implemented in "dlls/ntdll/reg.c".

Debug channel "reg".