1 /*
2    hints.h
3 
4    Mike Hufnagel and Bill Kendrick
5    Last modified: 11/18/95 (removed things that were local prototypes)
6 
7    Class hint functions.
8 */
9 
10 #ifndef HINTS_H
11 #define HINTS_H
12 
13 #include <X11/Xlib.h>
14 #include <X11/Xutil.h>
15 
16 #define APPL_CLASS "Examples"
17 
18 void SetSizeHints(Display *display, Window window, int x, int y, int width,
19 		  int height);
20 /*
21    Sends the size hints to the WM
22 */
23 
24 void SetStandardHints(Display *display, Window window, char* app_name,
25 		      char* wind_name, int x, int y, int width, int height);
26 /*
27    Makes suggestions to the WM about the look of new windows.
28 */
29 
30 void SetWindowName(Display *display, Window window, char* name);
31 /*
32    Sets a window's name.
33 */
34 
35 #endif /* HINTS_H */
36