diff options
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
{
|