#include "Globals.h"
#include "FastNBT.h"
Go to the source code of this file.
◆ CASE_SIMPLE_TAG
#define CASE_SIMPLE_TAG |
( |
|
TAGTYPE, |
|
|
|
LEN |
|
) |
| |
Value: case TAG_##TAGTYPE: \
{ \
Tag.m_DataStart = m_Pos; \
Tag.m_DataLength = LEN; \
m_Pos += LEN; \
}
Definition at line 284 of file FastNBT.cpp.
◆ NBT_RESERVE_SIZE
#define NBT_RESERVE_SIZE 200 |
◆ NEEDBYTES
#define NEEDBYTES |
( |
|
N, |
|
|
|
ERR |
|
) |
| |
Value: do { \
if (m_Data.size() - m_Pos < static_cast<size_t>(N)) \
{ \
return ERR; \
} \
} while (false)
Definition at line 138 of file FastNBT.cpp.
◆ PROPAGATE_ERROR
◆ make_error_code()