RegSaveKeyW method

int RegSaveKeyW(
  1. Pointer<HKEY__> hKey,
  2. Pointer<Uint16> lpFile,
  3. Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes
)

Implementation

int RegSaveKeyW(
  ffi.Pointer<HKEY__> hKey,
  ffi.Pointer<ffi.Uint16> lpFile,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
) {
  return _RegSaveKeyW(
    hKey,
    lpFile,
    lpSecurityAttributes,
  );
}