RegCopyTreeW method

int RegCopyTreeW(
  1. Pointer<HKEY__> hKeySrc,
  2. Pointer<Uint16> lpSubKey,
  3. Pointer<HKEY__> hKeyDest
)

Implementation

int RegCopyTreeW(
  ffi.Pointer<HKEY__> hKeySrc,
  ffi.Pointer<ffi.Uint16> lpSubKey,
  ffi.Pointer<HKEY__> hKeyDest,
) {
  return _RegCopyTreeW(
    hKeySrc,
    lpSubKey,
    hKeyDest,
  );
}