RegCreateKeyExW method
Implementation
int RegCreateKeyExW(
ffi.Pointer<HKEY__> hKey,
ffi.Pointer<ffi.Uint16> lpSubKey,
int Reserved,
ffi.Pointer<ffi.Uint16> lpClass,
int dwOptions,
int samDesired,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpSecurityAttributes,
ffi.Pointer<ffi.Pointer<HKEY__>> phkResult,
ffi.Pointer<ffi.Uint64> lpdwDisposition,
) {
return (_RegCreateKeyExW ??=
_dylib.lookupFunction<_c_RegCreateKeyExW, _dart_RegCreateKeyExW>(
'RegCreateKeyExW'))(
hKey,
lpSubKey,
Reserved,
lpClass,
dwOptions,
samDesired,
lpSecurityAttributes,
phkResult,
lpdwDisposition,
);
}