mirror of
https://github.com/ioquake/jedi-academy.git
synced 2025-02-10 14:20:36 +00:00
18 lines
283 B
C
18 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
|