diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-15 09:29:32 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-15 09:29:32 +0000 |
commit | 2dec6dd505897498b8ea50043190961159f0b407 (patch) | |
tree | 67e1b443b22b4f32727f8fa928ae9f0d7bd32890 /tests/allocator.cpp | |
parent | fc88f09ac1259a31f6da930ed9b885c0c83c38d1 (diff) |
tests: Added Xbox360 and PS3 toolset support
git-svn-id: http://pugixml.googlecode.com/svn/trunk@602 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/allocator.cpp')
-rw-r--r-- | tests/allocator.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/allocator.cpp b/tests/allocator.cpp index 7075194..e0efeef 100644 --- a/tests/allocator.cpp +++ b/tests/allocator.cpp @@ -9,7 +9,12 @@ # pragma cpp_extensions on // enable some extensions to include windows.h
# endif
-# include <windows.h>
+# ifdef _XBOX_VER
+# define NOD3D
+# include <xtl.h>
+# else
+# include <windows.h>
+# endif
namespace
{
|