pcsxr-1.9.92
[pcsx_rearmed.git] / macosx / config.h
1 //
2 // Copyright (c) 2008, Wei Mingzhi. All rights reserved.
3 //
4 // Use, redistribution and modification of this code is unrestricted as long as this
5 // notice is preserved.
6 //
7
8 #ifndef CONFIG_H
9 #define CONFIG_H
10
11 #ifndef MAXPATHLEN
12 #define MAXPATHLEN 256
13 #endif
14
15 #ifndef PACKAGE_VERSION
16 #define PACKAGE_VERSION "1.9"
17 #endif
18
19 #ifndef PREFIX
20 #define PREFIX "./"
21 #endif
22
23 #ifndef inline
24 #ifdef _DEBUG
25 #define inline /* */
26 #else
27 #define inline __inline__
28 #endif
29 #endif
30
31 #endif