summaryrefslogtreecommitdiff
path: root/xmlwf/filemap.h
diff options
context:
space:
mode:
authorjjc <jjc>1998-05-31 11:53:27 +0000
committerjjc <jjc>1998-05-31 11:53:27 +0000
commitd9ed8e96b419c7900b2171cce634d82aa287836d (patch)
tree939afe427d0729fd041e5423bda8976ef5f59759 /xmlwf/filemap.h
parentf13cdb4859413b66036d8d4ab2283386684aa9f0 (diff)
downloadlibexpat-d9ed8e96b419c7900b2171cce634d82aa287836d.tar.gz
Ifdef for XML_UNICODE
Diffstat (limited to 'xmlwf/filemap.h')
-rwxr-xr-xxmlwf/filemap.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/xmlwf/filemap.h b/xmlwf/filemap.h
index 96ffa6f..60a1f67 100755
--- a/xmlwf/filemap.h
+++ b/xmlwf/filemap.h
@@ -21,6 +21,12 @@ Contributor(s):
#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