(svn r8674) [PSP] -Add: added network code for PSP, based on the work of Turulo

-Add: added general header-inclusing for PSP
This commit is contained in:
truelight
2007-02-11 13:57:35 +00:00
parent b71d6e1401
commit 0d91ed68a9
3 changed files with 59 additions and 6 deletions

View File

@@ -37,6 +37,12 @@
# define strcasecmp stricmp
#endif
#if defined(PSP)
# include <psptypes.h>
# include <pspdebug.h>
# include <pspthreadman.h>
#endif /* PSP */
#ifdef __BEOS__
# include <SupportDefs.h>
#endif
@@ -81,7 +87,8 @@
/* PSP can only have 10 file-descriptors open at any given time, but this
* switch only limits reads via the Fio system. So keep 2 fds free for things
* like saving a game. */
#define LIMITED_FDS 8
# define LIMITED_FDS 8
# define printf pspDebugScreenPrintf
#endif /* PSP */
/* by default we use [] var arrays */