mud/lib/lib/include/chat.h
2020-09-06 05:43:07 -07:00

21 lines
395 B
C

#ifndef __CHAT_H__
#define __CHAT_H__
static void create();
static string cache_commands(string str);
static void net_dead();
void eventReconnect();
int eventDestruct();
string *AddChannel(mixed val);
string *RemoveChannel(mixed val);
string *GetChannels();
string *RestrictChannel(mixed val);
string *UnrestrictChannel(mixed val);
string *GetRestrictedChannels();
#endif /* __CHAT_H__ */