1/*
2 * Copyright 1992 Claude Lecommandeur.
3 */
4
5#ifndef _CTWM_WINDOWBOX_H
6#define _CTWM_WINDOWBOX_H
7
8name_list **addWindowBox(char *boxname, char *geometry);
9void createWindowBoxes(void);
10WindowBox *findWindowBox(TwmWindow *twmwin);
11
12void ConstrainedToWinBox(TwmWindow *twmwin,
13                         int x, int y, int *nx, int *ny);
14void fittocontent(TwmWindow *twmwin);
15
16#endif /* _CTWM_WINDOWBOX_H */
17