1 /***************************************************************************
2  * LPRng - An Extended Print Spooler System
3  *
4  * Copyright 1988-2003, Patrick Powell, San Diego, CA
5  *     papowell@lprng.com
6  * See LICENSE for conditions of use.
7  ***************************************************************************/
8 
9 
10 
11 #ifndef _LPD_STATUS_H_
12 #define _LPD_STATUS_H_ 1
13 
14 /* PROTOTYPES */
15 int Job_status( int *sock, char *input );
16 void Get_queue_status( struct line_list *tokens, int *sock,
17 	int displayformat, int status_lines, struct line_list *done_list,
18 	int max_size, char *hash_key );
19 void Print_different_last_status_lines( int *sock, int fd,
20 	int status_lines, int max_size );
21 void Get_local_or_remote_status( struct line_list *tokens, int *sock,
22 	int displayformat, int status_lines, struct line_list *done_list,
23 	int max_size, char *hash_key );
24 
25 #endif
26