aboutsummaryrefslogtreecommitdiff
path: root/wince/missing/io.h
blob: a7b74c71b7dfa36bc7e30cc3bf6933f0ec8c3f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Header is not present in Windows CE SDK */

/* This stuff will live here until port configuration file is in place */
#define stricmp _stricmp
#define strdup _strdup
#define _HEAPOK 0
#define _heapchk() 0

#ifndef _FILE_DEFINED
   typedef void FILE;
   #define _FILE_DEFINED
#endif
FILE* wce_fopen(const char* fname, const char* fmode);
#define fopen wce_fopen