/********************/ /* System includes. */ /********************/ #ifndef FCTSYS_H_ #define FCTSYS_H_ #include /** * @note This appears to already be included in the OSX build of wxWidgets. * Will someone with OSX please remove this and see if it compiles? */ #ifdef __WXMAC__ #include #endif /** * @note Do we really need these defined? */ #define UNIX_STRING_DIR_SEP wxT( "/" ) #define WIN_STRING_DIR_SEP wxT( "\\" ) #ifdef DEBUG #define DBG(x) x #else #define DBG(x) // nothing #endif // wxNullPtr is not defined prior to wxWidgets 2.9.0. #if !wxCHECK_VERSION( 2, 9, 0 ) #define wxNullPtr ((void *)NULL) #endif #include #endif // FCTSYS_H__