scummvm/backends/platform/wince/missing/fopen.h
2019-04-15 08:06:39 +03:00

11 lines
285 B
C

/* 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
}