ORDeleteValue function

Removes a named value from the specified registry key in an offline registry hive.

Syntax

DWORD ORDeleteValue(
  _In_     ORHKEY Handle,
  _In_opt_ PCWSTR lpValueName
);

Parameters

Handle [in]

A handle to an open registry key in an offline registry hive.

lpValueName [in, optional]

The registry value to be removed. If this parameter is NULL or an empty string, the default unnamed value set by the ORSetValue function is removed.

Value names are not case sensitive.

Return value

If the function succeeds, the return value is ERROR_SUCCESS.

If the function fails, the return value is a nonzero error code defined in Winerror.h. You can use the FormatMessage function with the FORMAT_MESSAGE_FROM_SYSTEM flag to get a generic description of the error.

Requirements

Requirement Value
Redistributable
Windows Offline Registry library version 1.0 or later
Header
Offreg.h
DLL
Offreg.dll

See also

ORSetValue