home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / program / lynxlib / windnew.c < prev   
Encoding:
C/C++ Source or Header  |  1993-10-23  |  303 b   |  16 lines

  1. /* Binding for the wind_new() command documented in the */
  2. /* Rainbow TOS Release Notes */
  3.  
  4. extern int control[];
  5. extern char ctrl_cnts[115][3];
  6.  
  7. #define WIND_NEW 109
  8.  
  9. wind_new()
  10. {
  11. register char *c;
  12.     c = &(ctrl_cnts[WIND_NEW-10][0]);
  13.     c[0] = c[1] = c[2] = c[3] = 0;
  14.     crys_if(WIND_NEW);
  15. }
  16.