mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-11 01:15:14 +00:00
19 lines
337 B
C
19 lines
337 B
C
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Loader {
|
||
|
|
||
|
constexpr static u32 PkgMagic = 0x544e437f;
|
||
|
|
||
|
enum class FileTypes {
|
||
|
Unknown,
|
||
|
Pkg,
|
||
|
};
|
||
|
|
||
|
FileTypes DetectFileType(const std::string& filepath);
|
||
|
} // namespace Loader
|