Skip to content

Latest commit

 

History

History
49 lines (44 loc) · 1.54 KB

physfs_platforms.h

File metadata and controls

49 lines (44 loc) · 1.54 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _INCL_PHYSFS_PLATFORMS
#define _INCL_PHYSFS_PLATFORMS
#ifndef __PHYSICSFS_INTERNAL__
#error Do not include this header from your applications.
#endif
/*
* These only define the platforms to determine which files in the platforms
* directory should be compiled. For example, technically BeOS can be called
* a "unix" system, but since it doesn't use unix.c, we don't define
* PHYSFS_PLATFORM_UNIX on that system.
*/
Nov 5, 2008
Nov 5, 2008
15
16
17
18
19
#if (defined __HAIKU__)
# define PHYSFS_PLATFORM_HAIKU
# define PHYSFS_PLATFORM_BEOS
# define PHYSFS_PLATFORM_POSIX
#elif ((defined __BEOS__) || (defined __beos__))
20
21
22
23
24
25
26
27
28
# define PHYSFS_PLATFORM_BEOS
# define PHYSFS_PLATFORM_POSIX
#elif (defined _WIN32_WCE) || (defined _WIN64_WCE)
# define PHYSFS_PLATFORM_POCKETPC
#elif (((defined _WIN32) || (defined _WIN64)) && (!defined __CYGWIN__))
# define PHYSFS_PLATFORM_WINDOWS
#elif (defined OS2)
# define PHYSFS_PLATFORM_OS2
#elif ((defined __MACH__) && (defined __APPLE__))
Mar 23, 2009
Mar 23, 2009
29
/* To check if iphone or not, we need to include this file */
Nov 2, 2008
Nov 2, 2008
30
31
32
33
34
35
36
37
38
# include <TargetConditionals.h>
# if (defined(TARGET_IPHONE_SIMULATOR) || (defined TARGET_OS_IPHONE))
# define PHYSFS_PLATFORM_UNIX
# define PHYSFS_PLATFORM_POSIX
# define PHYSFS_NO_CDROM_SUPPORT
# else
# define PHYSFS_PLATFORM_MACOSX
# define PHYSFS_PLATFORM_POSIX
# endif
39
#elif defined(macintosh)
Mar 14, 2007
Mar 14, 2007
40
# error Classic Mac OS support was dropped from PhysicsFS 2.0. Move to OS X.
41
42
43
44
45
46
47
48
#elif defined(unix)
# define PHYSFS_PLATFORM_UNIX
# define PHYSFS_PLATFORM_POSIX
#else
# error Unknown platform.
#endif
#endif /* include-once blocker. */