home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / utilities2 / desklib / Libraries / Handler / c / DeleteW < prev    next >
Encoding:
Text File  |  1992-04-09  |  375 b   |  14 lines

  1. #include "Wimp.h"
  2. #include "Window.h"
  3.  
  4.  
  5. extern BOOL Handler_DeleteWindow(event_pollblock *event, void *reference)
  6. /*  Alternate handler to Handler_Close, which calls the higher-level 
  7.  *  Window_Delete() to close and delete the window, release memory, and
  8.  *  remove all handlers attached to the window.
  9.  */
  10. {
  11.   Window_Delete(event->data.openblock.window);
  12.   return(TRUE);
  13. }
  14.