1 /*
2    visual.h
3 
4    Bill Kendrick & Mike Hufnagel
5    Last modified: 11/18/95 (clean up)
6 
7    Visual routine(s).
8 */
9 
10 #ifndef VISUAL_H
11 #define VISUAL_H
12 
13 #include <X11/Xlib.h>
14 #include <X11/Xutil.h>
15 
16 int SetUpVisual(Display *display, int screen, Visual **visual, int *depth);
17 /*
18    Grabs a PseudoColor visual.
19 */
20 
21 #endif /* VISUAL_H */
22