CloseWindow( Window )
VOID CloseWindow( struct Window * );
Closes an Intuition window. Unlinks it from the system, deallocates its memory, and makes it disappear.
When this function is called, all IDCMP messages which have been sent to your window are deallocated. If the window had shared a message Port with other windows, you must be sure that there are no unreplied messages for this window in the message queue. Otherwise, your program will try to make use of a linked list (the queue) which contains free memory (the old messages). This will give you big problems. See the code fragment CloseWindowSafely(), below.
- NOTE:
-
If you have added a Menu strip to this Window (via
a call to
SetMenuStrip()) you must be sure to remove that Menu strip (via a call to
ClearMenuStrip()) before closing your Window.
- NOTE:
-
This function may block until it is safe to de-link and free
your window. Your program may thus be suspended while the user plays with gadgets, menus, or window sizes and position.
New for V36: If your window is a "Visitor Window" (see
OpenWindow) CloseWindow will decrement the "visitor count" in the public screen on which the window was open. When the last visitor window is closed, a signal will be sent to the public screen task, if this was pre-arranged (see
OpenScreen).