2025-10-05 07:38:42 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2025-05-28 02:23:51 +00:00
|
|
|
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <optional>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace UpdateChecker {
|
|
|
|
std::optional<std::string> GetResponse(std::string url, std::string path);
|
2025-10-05 07:38:42 -07:00
|
|
|
std::optional<std::string> GetLatestRelease(bool include_prereleases);
|
2025-05-28 02:23:51 +00:00
|
|
|
} // namespace UpdateChecker
|