mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 08:49:47 +00:00
34 lines
850 B
C++
34 lines
850 B
C++
#ifndef _GENERAL_H
|
|
#define _GENERAL_H
|
|
|
|
#include <string>
|
|
|
|
// File-inclusion for-read-only path, for PSF and CUE/TOC sheet usage.
|
|
bool MDFN_IsFIROPSafe(const std::string &path);
|
|
|
|
std::string MDFN_MakeFName(int type, int id1, const char *cd1);
|
|
|
|
void MDFN_trim(std::string &string);
|
|
|
|
typedef enum
|
|
{
|
|
MDFNMKF_STATE = 0,
|
|
MDFNMKF_SNAP,
|
|
MDFNMKF_SAV,
|
|
MDFNMKF_CHEAT,
|
|
MDFNMKF_PALETTE,
|
|
MDFNMKF_IPS,
|
|
MDFNMKF_MOVIE,
|
|
MDFNMKF_AUX,
|
|
MDFNMKF_SNAP_DAT,
|
|
MDFNMKF_CHEAT_TMP,
|
|
MDFNMKF_FIRMWARE
|
|
} MakeFName_Type;
|
|
|
|
const char *MDFN_MakeFName(MakeFName_Type type, int id1, const char *cd1);
|
|
|
|
void MDFN_GetFilePathComponents(const std::string &file_path, std::string *dir_path_out, std::string *file_base_out = NULL, std::string *file_ext_out = NULL);
|
|
|
|
std::string MDFN_EvalFIP(const std::string &dir_path, const std::string &rel_path, bool skip_safety_check);
|
|
#endif
|