summaryrefslogtreecommitdiff
path: root/expat-2.0.1/xmlwf/filemap.h
diff options
context:
space:
mode:
authorJing Yu <jingyu@google.com>2012-02-15 16:16:33 -0800
committerJing Yu <jingyu@google.com>2012-02-15 16:16:33 -0800
commit40172a0ae9d40a068f1e1a48ffcf6a1ccf765ed5 (patch)
tree7b5b3c5c4ac70d6921c8fb86073effa617e810b7 /expat-2.0.1/xmlwf/filemap.h
parent23b634bf690b4bb78eca0e813b8a678f8d0a45ae (diff)
downloadexpat-ndk-r12-release.tar.gz
Change-Id: Ia89f7f620935c3af8589fb220016e6bd940f46f1
Diffstat (limited to 'expat-2.0.1/xmlwf/filemap.h')
-rw-r--r--expat-2.0.1/xmlwf/filemap.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/expat-2.0.1/xmlwf/filemap.h b/expat-2.0.1/xmlwf/filemap.h
new file mode 100644
index 0000000..814edec
--- /dev/null
+++ b/expat-2.0.1/xmlwf/filemap.h
@@ -0,0 +1,17 @@
+/* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
+ See the file COPYING for copying permission.
+*/
+
+#include <stddef.h>
+
+#ifdef XML_UNICODE
+int filemap(const wchar_t *name,
+ void (*processor)(const void *, size_t,
+ const wchar_t *, void *arg),
+ void *arg);
+#else
+int filemap(const char *name,
+ void (*processor)(const void *, size_t,
+ const char *, void *arg),
+ void *arg);
+#endif