]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blob - zephyr/zwgc/xrevstack.h
061d3d552054b89f64032a091d0afadd548b4f06
[1ts-debian.git] / zephyr / zwgc / xrevstack.h
1 /* This file is part of the Project Athena Zephyr Notification System.
2  * It is one of the source files comprising zwgc, the Zephyr WindowGram
3  * client.
4  *
5  *      Created by:     Marc Horowitz <marc@athena.mit.edu>
6  *
7  *      $Id$
8  *
9  *      Copyright (c) 1989 by the Massachusetts Institute of Technology.
10  *      For copying and distribution information, see the file
11  *      "mit-copyright.h".
12  */
13
14 #ifndef _XREVSTACK_H_
15 #define _XREVSTACK_H_
16
17 #if (!defined(lint) && !defined(SABER))
18 static char rcsid_xrevstack_h[] = "$Id$";
19 #endif
20
21 #include <zephyr/mit-copyright.h>
22
23 extern x_gram *bottom_gram; /* for testing against NULL */
24 extern x_gram *unlinked;
25 extern int reverse_stack; /* is reverse stack on? */
26
27 extern void add_to_bottom(/* x_gram */);
28 extern void delete_gram(/* x_gram */);
29 extern void unlink_gram(/* x_gram */);
30 extern void pull_to_top(/* x_gram */);
31 extern void push_to_bottom(/* x_gram */);
32
33 #endif /* _XREVSTACK_H_ */