RegCreateKeyW method
Implementation
int RegCreateKeyW(
ffi.Pointer<HKEY__> hKey,
ffi.Pointer<ffi.Uint16> lpSubKey,
ffi.Pointer<ffi.Pointer<HKEY__>> phkResult,
) {
return (_RegCreateKeyW ??=
_dylib.lookupFunction<_c_RegCreateKeyW, _dart_RegCreateKeyW>(
'RegCreateKeyW'))(
hKey,
lpSubKey,
phkResult,
);
}