RegSaveKeyExA method

int RegSaveKeyExA(
  1. Pointer<HKEY__> hKey,
  2. Pointer<Int8> lpFile,
  3. Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  4. int Flags,
)

Implementation

int RegSaveKeyExA(
  ffi.Pointer<HKEY__> hKey,
  ffi.Pointer<ffi.Int8> lpFile,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  int Flags,
) {
  return _RegSaveKeyExA(
    hKey,
    lpFile,
    lpSecurityAttributes,
    Flags,
  );
}