2001-11-18 10:24:36 +00:00
|
|
|
/* Header is not present in Windows CE SDK */
|
|
|
|
|
2019-03-31 19:07:40 +01:00
|
|
|
extern "C" {
|
2001-11-18 10:24:36 +00:00
|
|
|
/* This stuff will live here until port configuration file is in place */
|
|
|
|
#ifndef _FILE_DEFINED
|
2011-03-09 03:02:46 +01:00
|
|
|
typedef void FILE;
|
|
|
|
#define _FILE_DEFINED
|
2001-11-18 10:24:36 +00:00
|
|
|
#endif
|
2011-03-09 03:02:46 +01:00
|
|
|
FILE *wce_fopen(const char *fname, const char *fmode);
|
2001-11-18 10:24:36 +00:00
|
|
|
#define fopen wce_fopen
|
2019-03-31 19:07:40 +01:00
|
|
|
}
|