2020-10-10 23:02:13 +00:00
|
|
|
#ifndef SERVER_H
|
|
|
|
|
|
|
|
#define SERVER_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void server_init();
|
|
|
|
|
|
|
|
const char *server_get_motd();
|
2020-12-01 17:02:48 +00:00
|
|
|
|
|
|
|
const char *server_get_features();
|
2020-10-10 23:02:13 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|