Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/include/hold.h
1069 views
1
/*
2
* hold.h: header for hold.c
3
*
4
* Written By Michael Sandrof
5
*
6
* Copyright(c) 1990
7
*
8
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
9
*
10
* @(#)$Id: hold.h 3 2008-02-25 09:49:14Z keaston $
11
*/
12
13
#ifndef __hold_h_
14
#define __hold_h_
15
16
void remove_from_hold_list (Window *);
17
void add_to_hold_list (Window *, char *, int);
18
void hold_mode (Window *, int, int);
19
int hold_output (Window *);
20
char *hold_queue (Window *);
21
void reset_hold (Window *);
22
int hold_queue_logged (Window *);
23
void toggle_stop_screen (char, char *);
24
25
#endif /* __hold_h_ */
26
27