mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-07 07:01:16 +01:00
18 lines
355 B
C
18 lines
355 B
C
#ifndef _PATHS_H
|
|
#define _PATHS_H
|
|
|
|
#ifndef DIR_SEPARATOR
|
|
#if defined (_WIN32) || defined (WIN32)
|
|
#define DIR_SEPARATOR '\\'
|
|
#else
|
|
#define DIR_SEPARATOR '/'
|
|
#endif
|
|
#endif
|
|
|
|
/* hack to allow relative paths in various OSs */
|
|
void fix_dir_separators(char* filename);
|
|
|
|
//const char* filename_extension(const char* pathname);
|
|
|
|
#endif
|