RegCreateKeyExA method
Implementation
int RegCreateKeyExA(
ffi.Pointer<HKEY__> hKey,
ffi.Pointer<ffi.Int8> lpSubKey,
int Reserved,
ffi.Pointer<ffi.Int8> lpClass,
int dwOptions,
int samDesired,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpSecurityAttributes,
ffi.Pointer<ffi.Pointer<HKEY__>> phkResult,
ffi.Pointer<ffi.Uint64> lpdwDisposition,
) {
return (_RegCreateKeyExA ??=
_dylib.lookupFunction<_c_RegCreateKeyExA, _dart_RegCreateKeyExA>(
'RegCreateKeyExA'))(
hKey,
lpSubKey,
Reserved,
lpClass,
dwOptions,
samDesired,
lpSecurityAttributes,
phkResult,
lpdwDisposition,
);
}