2
0

filemap.h 414 B

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