mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-25 20:02:33 +01:00
18 lines
274 B
C++
18 lines
274 B
C++
|
#ifndef PSYX_COMPAT_H
|
||
|
#define PSYX_COMPAT_H
|
||
|
|
||
|
// Psy-Cross compatibility header
|
||
|
|
||
|
// Necessary includes
|
||
|
#ifndef PSX
|
||
|
#include "EMULATOR_PRIVATE.H"
|
||
|
#endif
|
||
|
|
||
|
// Necessary types
|
||
|
#ifdef PSX
|
||
|
typedef u_long OTTYPE;
|
||
|
#else
|
||
|
typedef unsigned long long OTTYPE;
|
||
|
#endif
|
||
|
|
||
|
#endif PSYX_COMPAT_H
|