RegDeleteTree function advapi32

int RegDeleteTree(
  1. int hKey,
  2. Pointer<Utf16> lpSubKey
)

Deletes the subkeys and values of the specified key recursively.

LSTATUS RegDeleteTreeW(
  HKEY    hKey,
  LPCWSTR lpSubKey);

Implementation

int RegDeleteTree(int hKey, Pointer<Utf16> lpSubKey) =>
    _RegDeleteTree(hKey, lpSubKey);