diff options
Diffstat (limited to '3rdparty/expat/lib/winconfig.h')
-rw-r--r-- | 3rdparty/expat/lib/winconfig.h | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/3rdparty/expat/lib/winconfig.h b/3rdparty/expat/lib/winconfig.h index 562a4a82dc1..05805514ec7 100644 --- a/3rdparty/expat/lib/winconfig.h +++ b/3rdparty/expat/lib/winconfig.h @@ -6,8 +6,11 @@ \___/_/\_\ .__/ \__,_|\__| |_| XML parser - Copyright (c) 1997-2000 Thai Open Source Software Center Ltd - Copyright (c) 2000-2017 Expat development team + Copyright (c) 2000 Clark Cooper <coopercc@users.sourceforge.net> + Copyright (c) 2002 Greg Stein <gstein@users.sourceforge.net> + Copyright (c) 2005 Karl Waclawek <karl@waclawek.net> + Copyright (c) 2017-2023 Sebastian Pipping <sebastian@pipping.org> + Copyright (c) 2023 Orgad Shaneh <orgad.shaneh@audiocodes.com> Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -33,24 +36,13 @@ #ifndef WINCONFIG_H #define WINCONFIG_H -#define WIN32_LEAN_AND_MEAN +#ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +#endif #include <windows.h> #undef WIN32_LEAN_AND_MEAN #include <memory.h> #include <string.h> -#if defined(HAVE_EXPAT_CONFIG_H) /* e.g. MinGW */ -# include <expat_config.h> -#else /* !defined(HAVE_EXPAT_CONFIG_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 - -#endif /* !defined(HAVE_EXPAT_CONFIG_H) */ - #endif /* ndef WINCONFIG_H */ |