added path separator chars

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40212
This commit is contained in:
David Anderson 2006-12-13 11:14:04 +00:00
parent 36312e9779
commit e2935a2ae4

View File

@ -18,6 +18,8 @@
#include <direct.h>
#define PLATFORM_LIB_EXT "dll"
#define PLATFORM_MAX_PATH MAX_PATH
#define PLATFORM_SEP_CHAR '\\'
#define PLATFORM_SEP_ALTCHAR '/'
#else if defined __linux__
#define PLATFORM_LINUX
#define PLATFORM_POSIX
@ -25,6 +27,8 @@
#include <errno.h>
#define PLATFORM_MAX_PATH PATH_MAX
#define PLATFORM_LIB_EXT "so"
#define PLATFORM_SEP_CHAR '/'
#define PLATFORM_SEP_ALTCHAR '\\'
#endif
#endif //_INCLUDE_SOURCEMOD_PLATFORM_H_