14 lines
385 B
C++
14 lines
385 B
C++
|
// 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);
|
||
|
std::optional<std::string> GetLatestRelease(bool);
|
||
|
} // namespace UpdateChecker
|