mirror of
https://github.com/pound-emu/pound.git
synced 2025-06-22 22:48:09 -04:00
15 lines
325 B
C++
15 lines
325 B
C++
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include "core/file_sys/vfs/vfs_types.h"
|
|
|
|
namespace FileSys::SystemArchive {
|
|
|
|
std::string GetLongDisplayVersion();
|
|
|
|
VirtualDir SystemVersion();
|
|
|
|
} // namespace FileSys::SystemArchive
|