1 
2 #define	ISOLINK_VERSION	"ISOLINK (v3.21, 2005/04/09, Denki Release)"
3 
4 
5 #if defined(DJGPP) || defined(MSDOS) || defined(WIN32)
6 #define PATH_SEPARATOR		'\\'
7 #define PATH_SEPARATOR_STRING	"\\"
8 #else
9 #define PATH_SEPARATOR		'/'
10 #define PATH_SEPARATOR_STRING	"/"
11 #endif
12 
13