jediacademy/code/qcommon/platform.h
2013-04-04 17:35:38 -05:00

17 lines
283 B
C

// Simple header file to dispatch to the relevant platform API headers
#ifndef _PLATFORM_H
#define _PLATFORM_H
#if defined(_XBOX)
#include <xtl.h>
#endif
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN 1
#endif
#if defined(_WINDOWS)
#include <windows.h>
#endif
#endif