home *** CD-ROM | disk | FTP | other *** search
- #include "Wimp.h"
- #include "Window.h"
- #include "Handler.h"
-
-
- extern BOOL Handler_DeleteWindow(event_pollblock *event, void *reference)
- /* Alternate handler to Handler_Close, which calls the higher-level
- * Window_Delete() to close and delete the window, release memory, and
- * remove all handlers attached to the window.
- */
- {
- Window_Delete(event->data.openblock.window);
- return(TRUE);
- }
-