/* * Special Windows 2 * ----------------- * The window created by this program can be resized and closed, * but does not have a minimize or maximize button. */ #include void main(void) { window w; w = newwindow("Special Window", rect(0,0,300,250), Titlebar + Closebox + Resize); show(w); mainloop(); }