Change the visibility of _chat_enabled and _chat_queue_message. #40

Closed
bigjango13 wants to merge 1 commits from (deleted):master into master
1 changed files with 2 additions and 2 deletions

View File

@ -9,9 +9,9 @@ void chat_open();
unsigned int chat_get_counter();
#endif // #ifndef MCPI_SERVER_MODE
__attribute__((visibility("internal"))) extern int _chat_enabled;
extern int _chat_enabled;
#ifndef MCPI_SERVER_MODE
__attribute__((visibility("internal"))) void _chat_queue_message(char *message);
void _chat_queue_message(char *message);
#endif // #ifndef MCPI_SERVER_MODE
#ifdef __cplusplus