mirror of
https://github.com/ARMSX2/ARMSX1.git
synced 2026-08-24 16:53:35 -07:00
22 lines
389 B
C++
22 lines
389 B
C++
#ifndef ARMSX_FRONTEND_ARCHIVE_H
|
|
#define ARMSX_FRONTEND_ARCHIVE_H
|
|
|
|
#include <filesystem>
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
namespace armsx {
|
|
|
|
bool IsZipPath(const std::filesystem::path& path);
|
|
|
|
#ifdef USE_CHD
|
|
std::optional<std::filesystem::path> ExtractZipLaunchCandidate(
|
|
const std::filesystem::path& archive_path,
|
|
std::string& error
|
|
);
|
|
#endif
|
|
|
|
} // namespace armsx
|
|
|
|
#endif
|