diff options
author | madmaxoft <madmaxoft@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-09 15:43:24 +0200 |
---|---|---|
committer | madmaxoft <madmaxoft@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-09 15:43:24 +0200 |
commit | 48cec90c3f1e81daec3d216ddf4db1ea1e2a8341 (patch) | |
tree | bd9c59149da9eec5e22e7bbbb9fe0de6352fee8d /expat/winconfig.h | |
parent | Removed an unneeded FTP command template file. ncftp supports everything on the commandline. (diff) | |
download | cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.gz cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.bz2 cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.lz cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.xz cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.zst cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.zip |
Diffstat (limited to '')
-rw-r--r-- | expat/winconfig.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/expat/winconfig.h b/expat/winconfig.h new file mode 100644 index 000000000..c1b791d62 --- /dev/null +++ b/expat/winconfig.h @@ -0,0 +1,30 @@ +/*================================================================ +** Copyright 2000, Clark Cooper +** All rights reserved. +** +** This is free software. You are permitted to copy, distribute, or modify +** it under the terms of the MIT/X license (contained in the COPYING file +** with this distribution.) +*/ + +#ifndef WINCONFIG_H +#define WINCONFIG_H + +#define WIN32_LEAN_AND_MEAN +#include <windows.h> +#undef WIN32_LEAN_AND_MEAN + +#include <memory.h> +#include <string.h> + +#define XML_NS 1 +#define XML_DTD 1 +#define XML_CONTEXT_BYTES 1024 + +/* we will assume all Windows platforms are little endian */ +#define BYTEORDER 1234 + +/* Windows has memmove() available. */ +#define HAVE_MEMMOVE + +#endif /* ndef WINCONFIG_H */ |