[Scummvm-cvs-logs] CVS: scummvm/backends/wince portdefs.h,1.4,1.5
Nicolas Bacca
arisme at users.sourceforge.net
Sun May 11 07:03:08 CEST 2003
Update of /cvsroot/scummvm/scummvm/backends/wince
In directory sc8-pr-cvs1:/tmp/cvs-serv14850
Modified Files:
portdefs.h
Log Message:
Update missing functions for HPC builds
Index: portdefs.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/wince/portdefs.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- portdefs.h 4 Apr 2003 13:14:15 -0000 1.4
+++ portdefs.h 11 May 2003 14:02:44 -0000 1.5
@@ -36,15 +36,16 @@
void assert( void* expression );
void assert( int expression );
long int strtol(const char *nptr, char **endptr, int base);
-char *strdup( const char *s);
-int _heapchk();
+char *_strdup(const char *s);
+char *strpbrk(const char *s, const char *accept);
#endif
#ifdef _WIN32_WCE
-void *bsearch(const void *, const void *, size_t,
- size_t, int (*x) (const void *, const void *));
+void *bsearch(const void *, const void *, size_t, size_t, int (*x) (const void *, const void *));
+char *getcwd(char *buf, int size);
+
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
More information about the Scummvm-git-logs
mailing list