home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
fractal
/
kaos.lha
/
fixptlib
/
destroy_fp_windows.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-11-18
|
350 b
|
20 lines
/*
### destroy periodic orbit window ###
*/
#include <suntool/sunview.h>
#include <suntool/panel.h>
void destroy_fp_windows()
{
extern short fp_panel_show;
extern Frame fp_frame;
extern Panel fp_panel;
if(fp_panel_show){
window_destroy(fp_panel);
window_destroy(fp_frame);
fp_panel_show=0;
}
}