xmlfile.h 509 B

123456789101112131415161718192021
  1. /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
  2. See the file COPYING for copying permission.
  3. */
  4. #define XML_MAP_FILE 01
  5. #define XML_EXTERNAL_ENTITIES 02
  6. #ifdef XML_LARGE_SIZE
  7. #if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400
  8. #define XML_FMT_INT_MOD "I64"
  9. #else
  10. #define XML_FMT_INT_MOD "ll"
  11. #endif
  12. #else
  13. #define XML_FMT_INT_MOD "l"
  14. #endif
  15. extern int XML_ProcessFile(XML_Parser parser,
  16. const XML_Char *filename,
  17. unsigned flags);