platform.h 283 B

123456789101112131415161718
  1. // Simple header file to dispatch to the relevant platform API headers
  2. #ifndef _PLATFORM_H
  3. #define _PLATFORM_H
  4. #if defined(_XBOX)
  5. #include <xtl.h>
  6. #endif
  7. #ifdef _WIN32
  8. #define WIN32_LEAN_AND_MEAN 1
  9. #endif
  10. #if defined(_WINDOWS)
  11. #include <windows.h>
  12. #endif
  13. #endif