minecraft-pi-reborn/mods/src/chat/chat-internal.h

17 lines
296 B
C
Raw Normal View History

2021-02-16 17:26:40 +00:00
#pragma once
2022-06-11 01:59:57 +00:00
#include <libreborn/libreborn.h>
2021-02-16 17:26:40 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2021-07-04 23:02:45 +00:00
__attribute__((visibility("internal"))) extern int _chat_enabled;
2021-09-12 03:18:12 +00:00
#ifndef MCPI_SERVER_MODE
2021-06-17 21:32:24 +00:00
__attribute__((visibility("internal"))) void _chat_queue_message(char *message);
2022-06-25 21:30:08 +00:00
#endif
2021-06-17 21:32:24 +00:00
2021-02-16 17:26:40 +00:00
#ifdef __cplusplus
}
2021-07-04 23:02:45 +00:00
#endif