#include <cstdio>
#include <stdint.h>
#include "tag-version.h"
#include "package.h"
Go to the source code of this file.
enum tag_type |
std::string make_date_string | ( | time_t | in_date | ) |
void marshallBoolean | ( | writer & | , | |
bool | ||||
) |
void marshallByte | ( | writer & | , | |
int8_t | ||||
) |
void marshallEnum | ( | writer & | wr, | |
enm | value | |||
) | [inline] |
void marshallFloat | ( | writer & | , | |
float | ||||
) |
void marshallInt | ( | writer & | , | |
int32_t | ||||
) |
void marshallMonsterInfo | ( | writer & | , | |
const monster_info & | ||||
) |
void marshallShort | ( | writer & | , | |
int16_t | ||||
) |
void marshallSigned | ( | writer & | th, | |
int64_t | v | |||
) |
void marshallString | ( | writer & | , | |
const std::string & | , | |||
int | maxSize = 0 | |||
) |
void marshallString4 | ( | writer & | , | |
const std::string & | ||||
) |
void marshallUByte | ( | writer & | , | |
uint8_t | ||||
) |
void marshallUnsigned | ( | writer & | th, | |
uint64_t | v | |||
) |
bool unmarshallBoolean | ( | reader & | ) |
int8_t unmarshallByte | ( | reader & | ) |
enm unmarshallEnum | ( | writer & | wr | ) | [inline] |
float unmarshallFloat | ( | reader & | ) |
int32_t unmarshallInt | ( | reader & | ) |
void unmarshallMonsterInfo | ( | reader & | , | |
monster_info & | mi | |||
) |
int16_t unmarshallShort | ( | reader & | ) |
int64_t unmarshallSigned | ( | reader & | th | ) |
std::string unmarshallString | ( | reader & | , | |
int | maxSize = 1000 | |||
) |
void unmarshallString4 | ( | reader & | , | |
std::string & | ||||
) |
uint8_t unmarshallUByte | ( | reader & | ) |
uint64_t unmarshallUnsigned | ( | reader & | th | ) |