LeviLamina
Loading...
Searching...
No Matches
_HeaderOutputPredefine.h
1#pragma once
2
3// clang-format off
4
5#ifdef _MSC_VER
6#pragma warning(disable : 4099) // for MOJANG : type name first seen using 'class' now seen using 'struct'
7#pragma warning(disable : 4201) // for MOJANG : nonstandard extension used : nameless struct/union
8#pragma warning(disable : 4373) // for MOJANG : override virtual function with different const/volatile params
9#endif
10
11#include "ll/api/base/Macro.h"
12
13#define MCAPI LL_SHARED_IMPORT
14#define MCTAPI template<> MCAPI
15#define MCFOLD MCAPI /*Identical COMDAT Folding*/
16#define MCNAPI [[deprecated("This API is not available. Open an issue if you need it. "\
17 "https://github.com/LiteLDev/mcapi-requests/issues/new")]] MCAPI
18
19#include <algorithm> // STL general algorithms
20#include <array> // STL array container
21#include <bitset> // STL bitset container
22#include <cctype> // Character handling functions
23#include <cerrno> // C Error codes
24#include <chrono> // C++11 Time library
25#include <clocale> // C localization library
26#include <cmath> // Common mathematics functions
27#include <complex> // Complex number type
28#include <condition_variable> // condition variable
29#include <cstdio> // C Standard Input/Output library
30#include <cstdlib> // C Standard General Utilities Library
31#include <cstring> // C string handling
32#include <ctime> // C Time library
33#include <cwchar> // Wide character type
34#include <cwctype> // Wide character classification
35#include <deque> // STL double ended queue container
36#include <exception> // Exception handling classes
37#include <filesystem> // STL file system
38#include <forward_list> // STL forward list container
39#include <fstream> // File stream classes
40#include <functional> // STL Function objects
41#include <iomanip> // Input/Output manipulators
42#include <ios> // Base input/output stream classes
43#include <iosfwd> // Input/Output forward declarations
44#include <iostream> // Standard Input/Output stream objects
45#include <istream> // Basic input stream classes
46#include <limits> // Numeric limits
47#include <list> // STL linear list container
48#include <map> // STL map container
49#include <memory> // STL unique_ptr, shared_ptr, weak_ptr
50#include <mutex> // STL mutual exclusion primitives
51#include <numbers> // numbers standard header
52#include <optional> // STL optional type
53#include <ostream> // Basic output stream classes
54#include <queue> // STL queue and priority_queue container
55#include <random> // C++11 Random numbers
56#include <set> // STL set and multiset container
57#include <shared_mutex> // STL shared mutual exclusion primitives
58#include <sstream> // String stream classes
59#include <stack> // STL stack container
60#include <stdexcept> // Standard exception objects
61#include <streambuf> // Stream buffer classes
62#include <string> // String class
63#include <string_view> // STL string_view type
64#include <unordered_map> // STL unordered map container
65#include <unordered_set> // STL unordered set container
66#include <utility> // STL utility components
67#include <variant> // STL variant type
68#include <vector> // STL dynamic array container
69#include <future> // STL future
70
71// STL expected for C++23
72#if _HAS_CXX23
73#include <expected>
74#endif
75
76#include "entt/entt.hpp" // Entity Component System Library
77#include "entt/fwd.hpp" // Entity Component Forward Declarations
78#include "glm/glm.hpp" // OpenGL Mathematics Library
79#include "glm/ext.hpp" // OpenGL Mathematics Library
80#include "gsl/gsl" // Guideline Support Library
81
82// LevelDB C++ Library
83#include "leveldb/c.h"
84#include "leveldb/cache.h"
85#include "leveldb/comparator.h"
86#include "leveldb/db.h"
87#include "leveldb/dumpfile.h"
88#include "leveldb/env.h"
89#include "leveldb/filter_policy.h"
90#include "leveldb/iterator.h"
91#include "leveldb/options.h"
92#include "leveldb/slice.h"
93#include "leveldb/status.h"
94#include "leveldb/table.h"
95#include "leveldb/table_builder.h"
96#include "leveldb/write_batch.h"
97
98// RapidJSON C++ Library
99#include "rapidjson/document.h"
100#include "rapidjson/encodings.h"
101#include "rapidjson/error/en.h"
102#include "rapidjson/filereadstream.h"
103#include "rapidjson/filewritestream.h"
104#include "rapidjson/pointer.h"
105#include "rapidjson/prettywriter.h"
106#include "rapidjson/rapidjson.h"
107#include "rapidjson/reader.h"
108#include "rapidjson/schema.h"
109#include "rapidjson/stringbuffer.h"
110#include "rapidjson/writer.h"
111
112// type_safe C++ Library
113#include "type_safe/strong_typedef.hpp"
114
115// expected_lite C++ Library
116#ifdef _MSC_VER
117#pragma warning(push)
118#pragma warning(disable : 4702)
119#endif
120#define nsel_CONFIG_SELECT_EXPECTED 1
121#include "nonstd/expected.hpp"
122#ifdef _MSC_VER
123#pragma warning(pop)
124#endif
125
126#include "ll/api/base/Alias.h"
127#include "ll/api/base/StdInt.h"
128
129// fmt C++ Library
130#include "fmt/format.h"
131#include "fmt/std.h"
132
133struct HWND__;
134struct _TP_CALLBACK_INSTANCE;
135struct _TP_WAIT;
136struct _TP_WORK;
137struct _TP_TIMER;
138typedef long HRESULT;
139enum _WINHTTP_WEB_SOCKET_BUFFER_TYPE;
140struct in6_addr;
141struct in_addr;
142struct sockaddr;
143struct addrinfo;
144struct _IP_ADAPTER_PREFIX_XP;
145struct sockaddr_storage;
146struct sockaddr_in;
147struct sockaddr_in6;
148struct evp_md_ctx_st;
149
150#include "mc/deps/core/utility/optional_ref.h" // replace optional<reference_wrapper<>>
151#include "mc/platform/brstd/function_ref.h" // function reference
152#include "mc/math/vector/Vecs.h" // for vector types
153
154template <typename T0, typename T1>
155class AutomaticID;
156class Dimension;
158
159struct RecipeNetIdTag;
162struct ItemStackNetIdTag;
165
166template <typename T0, typename T1 = uint, int T2 = 0>
167class TypedClientNetId;
168template <typename T0, typename T1 = uint, int T2 = 0>
169class TypedServerNetId;
170template <typename T0, typename T1 = uint, int T2 = 0>
171class TypedRuntimeId;
172
179
180class BlockLegacy;
181template <typename T0>
182class ActorBlockBase;
184
185template<int>
187
188template<typename T>
190public:
191 T* mBegin;
192 T* mEnd;
193 class iterator {
194 public:
195 T* mPtr;
196 };
197};
198
199namespace Bedrock {
200template <typename T, typename Err = std::error_code>
201class Result;
202template <typename T>
203class NonOwnerPointer;
204template <typename T>
205using NotNullNonOwnerPtr = gsl::not_null<NonOwnerPointer<T>>;
206
207template <typename T, typename... Args>
208class ImplBase {
209public:
210 virtual ~ImplBase() = default;
211};
212
213template <typename T, typename U, typename A, typename M>
215namespace Detail {
216template <typename T, typename U = void>
218}
219
220namespace Threading {
221template <typename T, typename Alloc = std::allocator<T>>
223}
224}
225
226namespace Core {
227template <typename... Params>
229public:
230 class Listener {};
231};
232template <typename TKey, typename TValue, typename TValuePtr, typename... TNewInstanceArgs>
233class LRUCache {
234public:
235 void* mUnk[14];
236};
237}
238
239namespace Puv {
240template <typename From, typename To, typename CustomData>
242}
243
244namespace Social {
245enum class SignInResult;
246}
247
248namespace NetherNet::Utils {
249template <typename T>
251public:
252 class View {};
253};
254}
255
256namespace rtc {
257template<class T, size_t N = size_t(-4711ll)>
259}
260
261template <typename T0>
263using http_string = std::basic_string<char, std::char_traits<char>, class http_stl_allocator<char>>;
264using http_wstring = std::basic_string<wchar_t, std::char_traits<wchar_t>, class http_stl_allocator<wchar_t>>;
265
266namespace asio::ssl {
267class verify_context;
268}
269
270namespace leveldb {
271class Compressor;
272class DecompressAllocator;
273}
274
275// clang-format on
Definition ActorBlockBase.h:6
Definition AutomaticID.h:6
Definition _HeaderOutputPredefine.h:214
Definition _HeaderOutputPredefine.h:208
Definition _HeaderOutputPredefine.h:222
Definition BlockLegacy.h:88
Definition _HeaderOutputPredefine.h:230
Definition _HeaderOutputPredefine.h:228
Definition _HeaderOutputPredefine.h:233
Definition Dimension.h:83
Definition _HeaderOutputPredefine.h:252
Definition _HeaderOutputPredefine.h:250
Definition _HeaderOutputPredefine.h:186
Definition _HeaderOutputPredefine.h:241
Definition TypedClientNetId.h:6
Definition TypedRuntimeId.h:6
Definition TypedServerNetId.h:6
Definition _HeaderOutputPredefine.h:193
Definition _HeaderOutputPredefine.h:189
Definition http_stl_allocator.h:6
Definition _HeaderOutputPredefine.h:258
Definition _HeaderOutputPredefine.h:217
Definition ContainerRuntimeIdTag.h:5
Definition CreativeItemNetIdTag.h:5
Definition ItemStackLegacyRequestIdTag.h:5
Definition ItemStackNetIdTag.h:5
Definition ItemStackRequestIdTag.h:5
Definition RecipeNetIdTag.h:5