RegCreateKeyA method

int RegCreateKeyA(
  1. Pointer<HKEY__> hKey,
  2. Pointer<Int8> lpSubKey,
  3. Pointer<Pointer<HKEY__>> phkResult
)

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,
  );
}