XUnmapWindow() . EMWH ICCCM, , . , , . BTW Windows.
EDIT:
Xlib XIconifyWindow, ICCCM . WM. X11 , , reset , .
: , , , , Framebuffer , , /HUD- ( , ), . .
EDIT 2
:
XIconifyWindow - / ,
Status XIconifyWindow(Display *dpy, Window w, int screen)
{
XClientMessageEvent ev;
Atom prop;
prop = XInternAtom(dpy, "WM_CHANGE_STATE", False);
if(prop == None)
return False;
ev.type = ClientMessage;
ev.window = w;
ev.message_type = prop;
ev.format = 32;
ev.data.l[0] = IconicState;
return XSendEvent(dpy, RootWindow(dpy, screen), False,
SubstructureRedirectMask|SubstructureNotifyMask,
(XEvent *)&ev);
}