/*1__ __ _2___\ \/ /_ __ __ _| |_3/ _ \\ /| '_ \ / _` | __|4| __// \| |_) | (_| | |_5\___/_/\_\ .__/ \__,_|\__|6|_| XML parser78Copyright (c) 2000 Clark Cooper <[email protected]>9Copyright (c) 2002 Greg Stein <[email protected]>10Copyright (c) 2005 Karl Waclawek <[email protected]>11Copyright (c) 2017-2023 Sebastian Pipping <[email protected]>12Copyright (c) 2023 Orgad Shaneh <[email protected]>13Licensed under the MIT license:1415Permission is hereby granted, free of charge, to any person obtaining16a copy of this software and associated documentation files (the17"Software"), to deal in the Software without restriction, including18without limitation the rights to use, copy, modify, merge, publish,19distribute, sublicense, and/or sell copies of the Software, and to permit20persons to whom the Software is furnished to do so, subject to the21following conditions:2223The above copyright notice and this permission notice shall be included24in all copies or substantial portions of the Software.2526THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,27EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF28MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN29NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,30DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR31OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE32USE OR OTHER DEALINGS IN THE SOFTWARE.33*/3435#ifndef WINCONFIG_H36#define WINCONFIG_H3738#ifndef WIN32_LEAN_AND_MEAN39# define WIN32_LEAN_AND_MEAN40#endif41#include <windows.h>42#undef WIN32_LEAN_AND_MEAN4344#include <memory.h>45#include <string.h>4647#if defined(_MSC_VER)48# pragma warning(push,1)49# pragma warning(disable:4311) /* pointer truncation */50#endif5152#endif /* ndef WINCONFIG_H */535455