blob: 09cd43544fc86d38f9a5003e259c866a31ba23f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/*
* This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
*
* 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 General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ACORE_DEFINE_H
#define ACORE_DEFINE_H
#include "CompilerDefs.h"
#include <cinttypes>
#include <climits>
#define ACORE_LITTLEENDIAN 0
#define ACORE_BIGENDIAN 1
#if !defined(ACORE_ENDIAN)
# if defined (BOOST_BIG_ENDIAN)
# define ACORE_ENDIAN ACORE_BIGENDIAN
# else
# define ACORE_ENDIAN ACORE_LITTLEENDIAN
# endif
#endif
#if AC_PLATFORM == AC_PLATFORM_WINDOWS
# define ACORE_PATH_MAX MAX_PATH
# define _USE_MATH_DEFINES
#else //AC_PLATFORM != AC_PLATFORM_WINDOWS
# define ACORE_PATH_MAX PATH_MAX
#endif //AC_PLATFORM
#if !defined(COREDEBUG)
# define ACORE_INLINE inline
#else //COREDEBUG
# if !defined(ACORE_DEBUG)
# define ACORE_DEBUG
# endif //ACORE_DEBUG
# define ACORE_INLINE
#endif //!COREDEBUG
#if AC_COMPILER == AC_COMPILER_GNU
# define ATTR_PRINTF(F, V) __attribute__ ((format (printf, F, V)))
#else //AC_COMPILER != AC_COMPILER_GNU
# define ATTR_PRINTF(F, V)
#endif //AC_COMPILER == AC_COMPILER_GNU
#ifdef ACORE_API_USE_DYNAMIC_LINKING
# if AC_COMPILER == AC_COMPILER_MICROSOFT
# define AC_API_EXPORT __declspec(dllexport)
# define AC_API_IMPORT __declspec(dllimport)
# elif AC_COMPILER == AC_COMPILER_GNU
# define AC_API_EXPORT __attribute__((visibility("default")))
# define AC_API_IMPORT
# else
# error compiler not supported!
# endif
#else
# define AC_API_EXPORT
# define AC_API_IMPORT
#endif
#ifdef ACORE_API_EXPORT_COMMON
# define AC_COMMON_API AC_API_EXPORT
#else
# define AC_COMMON_API AC_API_IMPORT
#endif
#ifdef ACORE_API_EXPORT_DATABASE
# define AC_DATABASE_API AC_API_EXPORT
#else
# define AC_DATABASE_API AC_API_IMPORT
#endif
#ifdef ACORE_API_EXPORT_SHARED
# define AC_SHARED_API AC_API_EXPORT
#else
# define AC_SHARED_API AC_API_IMPORT
#endif
#ifdef ACORE_API_EXPORT_GAME
# define AC_GAME_API AC_API_EXPORT
#else
# define AC_GAME_API AC_API_IMPORT
#endif
#define UI64LIT(N) UINT64_C(N)
#define SI64LIT(N) INT64_C(N)
#define STRING_VIEW_FMT_ARG(str) static_cast<int>((str).length()), (str).data()
typedef std::int64_t int64;
typedef std::int32_t int32;
typedef std::int16_t int16;
typedef std::int8_t int8;
typedef std::uint64_t uint64;
typedef std::uint32_t uint32;
typedef std::uint16_t uint16;
typedef std::uint8_t uint8;
#endif //ACORE_DEFINE_H
|