1
0
forked from 0ad/0ad
0ad/source/tools/atlas/AtlasUI/Misc/stdafx.h
Ykkrosh d0146135c4 Initial Actor Editor code
This was SVN commit r2025.
2005-03-19 22:29:32 +00:00

25 lines
426 B
C++

// Precompiled headers:
#ifdef _WIN32
# define HAVE_PCH
#endif
#ifdef HAVE_PCH
// Exclude rarely-used stuff from Windows headers
#define WIN32_LEAN_AND_MEAN
// Include useful wx headers
#include "wx/wxprec.h"
#include "wx/listctrl.h"
#include <vector>
// Nicer memory-leak detection:
#ifdef _DEBUG
#include <crtdbg.h>
#define new new(_NORMAL_BLOCK ,__FILE__, __LINE__)
#endif
#endif // HAVE_PCH