1999-02-27 04:41:01 +03:00
|
|
|
/*
|
2000-08-30 04:17:14 +04:00
|
|
|
Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
|
2001-09-29 04:10:42 +04:00
|
|
|
See the file COPYING for copying permission.
|
1999-02-27 04:41:01 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#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
|