mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-14 08:50:36 +00:00
17 lines
266 B
C
17 lines
266 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
|