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

  1. /* 
  2. ### procedure for creating an integration windows through a button ###
  3. */
  4.  
  5. void
  6. int_panel_proc()
  7. {
  8.  
  9.     extern int mapping_on;
  10.     if(!mapping_on){
  11.         (void) create_int_windows();
  12.     }
  13.     else {
  14.         system_mess_proc(1,"This model is a mapping!");
  15.     }
  16. }
  17.