You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.0 KiB
C
77 lines
2.0 KiB
C
13 years ago
|
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
||
|
// Copyright (C) 2010 Winch Gate Property Limited
|
||
|
//
|
||
5 years ago
|
// This source file has been modified by the following contributors:
|
||
|
// Copyright (C) 2014-2019 Jan BOON (Kaetemi) <jan.boon@kaetemi.be>
|
||
|
//
|
||
13 years ago
|
// This program is free software: you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU Affero General Public License as
|
||
|
// published by the Free Software Foundation, either version 3 of the
|
||
|
// License, or (at your option) any later version.
|
||
|
//
|
||
|
// This program is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU Affero General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Affero General Public License
|
||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
#ifndef NL_STDMISC_H
|
||
|
#define NL_STDMISC_H
|
||
|
|
||
8 years ago
|
#if defined(_MSC_VER) && defined(_DEBUG)
|
||
|
#define _CRTDBG_MAP_ALLOC
|
||
|
#include <stdlib.h>
|
||
6 years ago
|
#include <malloc.h>
|
||
8 years ago
|
#include <crtdbg.h>
|
||
|
#define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
|
||
6 years ago
|
#elif defined(_MSC_VER)
|
||
|
#include <malloc.h>
|
||
8 years ago
|
#endif
|
||
|
|
||
13 years ago
|
#include <algorithm>
|
||
|
#include <cmath>
|
||
|
#include <csignal>
|
||
|
#include <cstdarg>
|
||
|
#include <cstddef>
|
||
|
#include <cstdio>
|
||
|
#include <cstdlib>
|
||
|
#include <cstring>
|
||
|
#include <ctime>
|
||
|
#include <deque>
|
||
|
#include <exception>
|
||
|
#include <fstream>
|
||
|
#include <iomanip>
|
||
|
#include <iostream>
|
||
|
#include <limits>
|
||
|
#include <list>
|
||
|
#include <map>
|
||
|
#include <memory>
|
||
|
#include <numeric>
|
||
|
#include <set>
|
||
|
#include <string>
|
||
|
#include <typeinfo>
|
||
|
#include <utility>
|
||
|
#include <vector>
|
||
|
|
||
10 years ago
|
#include <nel/misc/types_nl.h>
|
||
|
|
||
9 years ago
|
#include <libxml/parser.h>
|
||
|
|
||
10 years ago
|
#ifdef NL_OS_WINDOWS
|
||
10 years ago
|
# define WIN32_LEAN_AND_MEAN
|
||
9 years ago
|
# define _WIN32_WINDOWS 0x0500
|
||
10 years ago
|
# ifndef _WIN32_WINNT
|
||
9 years ago
|
# define _WIN32_WINNT 0x0500
|
||
10 years ago
|
# endif
|
||
10 years ago
|
# ifndef NL_COMP_MINGW
|
||
9 years ago
|
# define WINVER 0x0500
|
||
10 years ago
|
# define NOMINMAX
|
||
11 years ago
|
# endif
|
||
|
# include <WinSock2.h>
|
||
10 years ago
|
# include <Windows.h>
|
||
13 years ago
|
#endif
|
||
|
|
||
|
#endif // NL_STDMISC_H
|