2021-02-16 17:26:40 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void chat_open();
|
2021-02-16 22:08:43 +00:00
|
|
|
unsigned int chat_get_counter();
|
|
|
|
|
2021-02-16 17:26:40 +00:00
|
|
|
void chat_queue_message(char *message);
|
|
|
|
void chat_send_messages(unsigned char *minecraft);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|