aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince/missing/fopen.h
blob: b4f7d03129f2f2295c47fea2f8e3481249db264f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Header is not present in Windows CE SDK */

extern "C" {
/* This stuff will live here until port configuration file is in place */
#ifndef _FILE_DEFINED
typedef void FILE;
#define _FILE_DEFINED
#endif
FILE *wce_fopen(const char *fname, const char *fmode);
#define fopen wce_fopen
}