home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / intlib / destroy_int_windows.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-18  |  392 b   |  22 lines

  1. /*
  2. ### destroy integration windows ###
  3. */
  4.  
  5. #include <suntool/sunview.h>
  6. #include <suntool/panel.h>
  7.  
  8. void
  9. destroy_int_windows()
  10. {
  11.         extern short int_panel_show;
  12.         extern Frame int_frame;
  13.         extern Panel int_panel;
  14.  
  15.         if(int_panel_show){
  16.                 window_destroy(int_panel);
  17.                 window_destroy(int_frame);
  18.                 int_panel_show=0;
  19.         }
  20. }
  21.  
  22.