summaryrefslogtreecommitdiff
path: root/wince/fileops.h
diff options
context:
space:
mode:
authorSimon Howard2009-06-07 00:56:23 +0000
committerSimon Howard2009-06-07 00:56:23 +0000
commit6d0bf9181121b4c117c80d05a7f097363c531774 (patch)
tree1f6ad34f552ab93ceebf4b6046f8ba90b7353c64 /wince/fileops.h
parentdc8c45c667bc327e5e84e1d98d3f8b468d7a1553 (diff)
downloadchocolate-doom-6d0bf9181121b4c117c80d05a7f097363c531774.tar.gz
chocolate-doom-6d0bf9181121b4c117c80d05a7f097363c531774.tar.bz2
chocolate-doom-6d0bf9181121b4c117c80d05a7f097363c531774.zip
Add Windows CE implementations of some ANSI C functions that are
missing. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1553
Diffstat (limited to 'wince/fileops.h')
-rw-r--r--wince/fileops.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/wince/fileops.h b/wince/fileops.h
new file mode 100644
index 00000000..757a34fd
--- /dev/null
+++ b/wince/fileops.h
@@ -0,0 +1,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 */
+