// this replaces MyGUI_Platform.h, because cppcheck can't parse defines there.
// to use it add this file to cppcheck include directories before(!) other
// include directories while checking something like:
// # cppcheck trunk/MyGUIEngine/src -I trunk/Scripts/cppcheck -I trunk/MyGUIEngine/include --enable=all
#ifndef MYGUI_PLATFORM_H_
#define MYGUI_PLATFORM_H_
#define MYGUI_PLATFORM 1
#define MYGUI_COMPILER 2
#define MYGUI_FORCEINLINE
#define MYGUI_EXPORT
#define MYGUI_EXPORT_DLL
#define MYGUI_DEBUG_MODE 1
#endif // MYGUI_PLATFORM_H_
|