mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-01 07:38:38 +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);
|