00001 /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 00002 See the file COPYING for copying permission. 00003 */ 00004 00005 #include <stddef.h> 00006 00007 #ifdef XML_UNICODE 00008 int filemap(const wchar_t *name, 00009 void (*processor)(const void *, size_t, 00010 const wchar_t *, void *arg), 00011 void *arg); 00012 #else 00013 int filemap(const char *name, 00014 void (*processor)(const void *, size_t, 00015 const char *, void *arg), 00016 void *arg); 00017 #endif