filemap.h 500 B

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