OLD | NEW |
1 /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd | 1 /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd |
2 See the file COPYING for copying permission. | 2 See the file COPYING for copying permission. |
3 */ | 3 */ |
4 | 4 |
5 #include <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #ifdef COMPILED_FROM_DSP | 7 #ifdef COMPILED_FROM_DSP |
8 #include "winconfig.h" | 8 #include "winconfig.h" |
9 #elif defined(MACOS_CLASSIC) | 9 #elif defined(MACOS_CLASSIC) |
10 #include "macconfig.h" | 10 #include "macconfig.h" |
11 #elif defined(__amigaos4__) | 11 #elif defined(__amigaos__) |
12 #include "amigaconfig.h" | 12 #include "amigaconfig.h" |
13 #elif defined(__WATCOMC__) | 13 #elif defined(__WATCOMC__) |
14 #include "watcomconfig.h" | 14 #include "watcomconfig.h" |
15 #else | 15 #else |
16 #ifdef HAVE_EXPAT_CONFIG_H | 16 #ifdef HAVE_EXPAT_CONFIG_H |
17 #include <expat_config.h> | 17 #include <expat_config.h> |
18 #endif | 18 #endif |
19 #endif /* ndef COMPILED_FROM_DSP */ | 19 #endif /* ndef COMPILED_FROM_DSP */ |
20 | 20 |
21 #include "expat_external.h" | 21 #include "expat_external.h" |
(...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1327 | 1327 |
1328 void | 1328 void |
1329 XmlPrologStateInitExternalEntity(PROLOG_STATE *state) | 1329 XmlPrologStateInitExternalEntity(PROLOG_STATE *state) |
1330 { | 1330 { |
1331 state->handler = externalSubset0; | 1331 state->handler = externalSubset0; |
1332 state->documentEntity = 0; | 1332 state->documentEntity = 0; |
1333 state->includeLevel = 0; | 1333 state->includeLevel = 0; |
1334 } | 1334 } |
1335 | 1335 |
1336 #endif /* XML_DTD */ | 1336 #endif /* XML_DTD */ |
OLD | NEW |