RetroArch/tools/retrolaunch/cd_detect.h

8 lines
139 B
C
Raw Normal View History

#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);