~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to Externals/expat/xmlwf/xmlfile.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

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