home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource5 / 327_01 / colors.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-10  |  185 b   |  17 lines

  1. #include "panel.h"
  2. #include "keys.h"
  3.  
  4. main()
  5.     {
  6.  
  7.     pan_init();
  8.  
  9.     pan_activate("colors");
  10.  
  11.     while (pan_execute("", 1, 1) != ESC);
  12.  
  13.     pan_destroy();
  14.  
  15.     }
  16.  
  17.