home *** CD-ROM | disk | FTP | other *** search
- /*
- ### destroy a lyapunov window ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/panel.h>
-
- void destroy_fft_windows()
- {
- extern short fft_panel_show;
- extern Frame fft_frame;
- extern Panel fft_panel;
-
- if(fft_panel_show){
- window_destroy(fft_panel);
- window_destroy(fft_frame);
- fft_panel_show=0;
- }
- }
-
-