/*--------------------------------------------------------------------------- * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. See also the license.txt file for * additional informations. *--------------------------------------------------------------------------- */ #ifndef STDAFX_H #define STDAFX_H #include #define DWORD unsigned int #define byte unsigned char #define _u8 unsigned char #define Uint8 unsigned char #define _u16 unsigned short #define _u32 unsigned int #define BOOL int #define FALSE 0 #define TRUE (!0) #ifdef _WIN32 #define path_default_slash() "\\" #define path_default_slash_c() '\\' #else #define path_default_slash() "/" #define path_default_slash_c() '/' #endif #endif /* STDAFX_H */