blob: 757a34fdf4fa0da6f54437b1a36ddfc96952d069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// "Extension" implementation of ANSI C file functions for Windows CE.
//
// I (Simon Howard) release this file to the public domain.
//
#ifndef WINCE_FILEOPS_H
#define WINCE_FILEOPS_H
int remove(const char *pathname);
int rename(const char *oldpath, const char *newpath);
#endif /* #ifndef WINCE_FILEOPS_H */
|