mirror of
https://github.com/libretro/RetroArch
synced 2025-01-06 10:11:54 +00:00
8 lines
139 B
C
8 lines
139 B
C
#ifdef _WIN32
|
|
#include <io.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
int detect_cd_game(const char* cue_path, char* game_name, size_t max_len);
|