1*1230fdc1SLionel Sambuc /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 2*1230fdc1SLionel Sambuc See the file COPYING for copying permission. 3*1230fdc1SLionel Sambuc */ 4*1230fdc1SLionel Sambuc 5*1230fdc1SLionel Sambuc #include <stddef.h> 6*1230fdc1SLionel Sambuc 7*1230fdc1SLionel Sambuc #ifdef XML_UNICODE 8*1230fdc1SLionel Sambuc int filemap(const wchar_t *name, 9*1230fdc1SLionel Sambuc void (*processor)(const void *, size_t, 10*1230fdc1SLionel Sambuc const wchar_t *, void *arg), 11*1230fdc1SLionel Sambuc void *arg); 12*1230fdc1SLionel Sambuc #else 13*1230fdc1SLionel Sambuc int filemap(const char *name, 14*1230fdc1SLionel Sambuc void (*processor)(const void *, size_t, 15*1230fdc1SLionel Sambuc const char *, void *arg), 16*1230fdc1SLionel Sambuc void *arg); 17*1230fdc1SLionel Sambuc #endif 18