Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

25
include/hold.h Normal file
View File

@@ -0,0 +1,25 @@
/*
* hold.h: header for hold.c
*
* Written By Michael Sandrof
*
* Copyright(c) 1990
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*
* @(#)$Id: hold.h 3 2008-02-25 09:49:14Z keaston $
*/
#ifndef __hold_h_
#define __hold_h_
void remove_from_hold_list (Window *);
void add_to_hold_list (Window *, char *, int);
void hold_mode (Window *, int, int);
int hold_output (Window *);
char *hold_queue (Window *);
void reset_hold (Window *);
int hold_queue_logged (Window *);
void toggle_stop_screen (char, char *);
#endif /* __hold_h_ */