RegCreateKeyA method
Implementation
int RegCreateKeyA(
ffi.Pointer<HKEY__> hKey,
ffi.Pointer<ffi.Int8> lpSubKey,
ffi.Pointer<ffi.Pointer<HKEY__>> phkResult,
) {
return (_RegCreateKeyA ??=
_dylib.lookupFunction<_c_RegCreateKeyA, _dart_RegCreateKeyA>(
'RegCreateKeyA'))(
hKey,
lpSubKey,
phkResult,
);
}