// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project // SPDX-License-Identifier: GPL-3.0-or-later // Copyright Citra Emulator Project / Azahar Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include namespace UpdateChecker { typedef struct { std::string tag; std::string name; } Update; std::optional GetResponse(std::string url, std::string path); std::optional GetLatestRelease(bool include_prereleases); std::optional GetUpdate(); } // namespace UpdateChecker