Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Utilities/cmexpat/lib/winconfig.h
3153 views
1
/*
2
__ __ _
3
___\ \/ /_ __ __ _| |_
4
/ _ \\ /| '_ \ / _` | __|
5
| __// \| |_) | (_| | |_
6
\___/_/\_\ .__/ \__,_|\__|
7
|_| XML parser
8
9
Copyright (c) 2000 Clark Cooper <[email protected]>
10
Copyright (c) 2002 Greg Stein <[email protected]>
11
Copyright (c) 2005 Karl Waclawek <[email protected]>
12
Copyright (c) 2017-2023 Sebastian Pipping <[email protected]>
13
Copyright (c) 2023 Orgad Shaneh <[email protected]>
14
Licensed under the MIT license:
15
16
Permission is hereby granted, free of charge, to any person obtaining
17
a copy of this software and associated documentation files (the
18
"Software"), to deal in the Software without restriction, including
19
without limitation the rights to use, copy, modify, merge, publish,
20
distribute, sublicense, and/or sell copies of the Software, and to permit
21
persons to whom the Software is furnished to do so, subject to the
22
following conditions:
23
24
The above copyright notice and this permission notice shall be included
25
in all copies or substantial portions of the Software.
26
27
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
30
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
32
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
33
USE OR OTHER DEALINGS IN THE SOFTWARE.
34
*/
35
36
#ifndef WINCONFIG_H
37
#define WINCONFIG_H
38
39
#ifndef WIN32_LEAN_AND_MEAN
40
# define WIN32_LEAN_AND_MEAN
41
#endif
42
#include <windows.h>
43
#undef WIN32_LEAN_AND_MEAN
44
45
#include <memory.h>
46
#include <string.h>
47
48
#if defined(_MSC_VER)
49
# pragma warning(push,1)
50
# pragma warning(disable:4311) /* pointer truncation */
51
#endif
52
53
#endif /* ndef WINCONFIG_H */
54
55