1/* 2 * Window de/iconification routines 3 */ 4#ifndef _CTWM_WIN_ICONIFY_H 5#define _CTWM_WIN_ICONIFY_H 6 7 8/* De/Iconifying */ 9void Iconify(TwmWindow *tmp_win, int def_x, int def_y); 10void DeIconify(TwmWindow *tmp_win); 11 12/* Lower-level utils, but the squeeze code uses them too */ 13void ReMapTransients(TwmWindow *tmp_win); 14void UnmapTransients(TwmWindow *tmp_win, bool iconify, long eventMask); 15 16 17#endif /* _CTWM_WIN_ICONIFY_H */ 18