| 1 | // |
| 2 | // expat_config.h |
| 3 | // |
| 4 | // Poco XML specific configuration for expat. |
| 5 | // |
| 6 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
| 7 | // and Contributors. |
| 8 | // |
| 9 | // SPDX-License-Identifier: BSL-1.0 |
| 10 | // |
| 11 | |
| 12 | |
| 13 | #ifndef EXPAT_CONFIG_H |
| 14 | #define EXPAT_CONFIG_H |
| 15 | |
| 16 | |
| 17 | #include "Poco/Platform.h" |
| 18 | |
| 19 | |
| 20 | #if !defined(POCO_VXWORKS) |
| 21 | #include <memory.h> |
| 22 | #endif |
| 23 | #include <string.h> |
| 24 | |
| 25 | |
| 26 | #define XML_CONTEXT_BYTES 1024 |
| 27 | |
| 28 | |
| 29 | #if defined POCO_ARCH_LITTLE_ENDIAN |
| 30 | #define BYTEORDER 1234 |
| 31 | #else |
| 32 | #define BYTEORDER 4321 |
| 33 | #endif |
| 34 | |
| 35 | |
| 36 | #define HAVE_MEMMOVE |
| 37 | |
| 38 | |
| 39 | #endif /* EXPAT_CONFIG_H */ |
| 40 | |