You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
376 B
20 lines
376 B
/** |
|
* @file tmsg.h |
|
* |
|
* Interface of functionality transmitting chat messages. |
|
*/ |
|
#pragma once |
|
|
|
#include <cstdint> |
|
#include <memory> |
|
|
|
#include "utils/stdcompat/cstddef.hpp" |
|
|
|
namespace devilution { |
|
|
|
uint8_t tmsg_get(std::unique_ptr<byte[]> *msg); |
|
void tmsg_add(byte *msg, uint8_t bLen); |
|
void tmsg_start(); |
|
void tmsg_cleanup(); |
|
|
|
} // namespace devilution
|
|
|