minecraft-pi-reborn/mods/src/chat/chat.h
TheBrokenRail d851a8f3e1
All checks were successful
minecraft-pi-reborn/pipeline/head This commit looks good
2.2.0
2021-09-12 00:08:01 -04:00

20 lines
402 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#ifndef MCPI_SERVER_MODE
void chat_open();
unsigned int chat_get_counter();
#endif // #ifndef MCPI_SERVER_MODE
__attribute__((visibility("internal"))) extern int _chat_enabled;
#ifndef MCPI_SERVER_MODE
__attribute__((visibility("internal"))) void _chat_queue_message(char *message);
#endif // #ifndef MCPI_SERVER_MODE
#ifdef __cplusplus
}
#endif