mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
11 lines
141 B
C++
11 lines
141 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
enum FileTypes
|
|
{
|
|
FILETYPE_UNKNOWN,
|
|
FILETYPE_PKG
|
|
};
|
|
FileTypes detectFileType(const std::string& filepath);
|