dxx-rebirth/include/d_slash.h

17 lines
230 B
C
Raw Normal View History

2006-03-20 16:43:15 +00:00
//created on 9/4/99 by Victor Rachels
#ifndef _D_SLASH
#define _D_SLASH
#ifdef _WIN32
2006-03-20 16:43:15 +00:00
#define USEDSLASH '\\'
#define CHANGESLASH '/'
#else
#define USEDSLASH '/'
#define CHANGESLASH '\\'
#endif
void d_slash(char *path);
#endif