This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbtask/taskchat.h

21 lines
393 B
C
Raw Normal View History

#ifndef _TASKCHAT_H
#define _TASKCHAT_H
/* $Id$ */
2005-04-27 19:52:51 +00:00
#ifdef USE_EXPERIMENT
void chat_msg(char *, char *, char *);
#else
void chat_msg(int, char *, char *);
#endif
2005-04-22 21:18:45 +00:00
void system_shout(const char *, ...);
2003-03-24 19:44:38 +00:00
void chat_init(void);
2003-04-01 21:41:36 +00:00
void chat_cleanuser(pid_t);
2003-03-24 19:44:38 +00:00
char *chat_connect(char *);
char *chat_close(char *);
char *chat_put(char *);
char *chat_get(char *);
2003-04-02 21:36:47 +00:00
char *chat_checksysop(char *);
#endif