home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / JAZLIB / WINDOW.C < prev    next >
Text File  |  1993-12-01  |  581b  |  21 lines

  1. /*
  2. ┌────────────────────────────────────────────────────────────────────────────┐
  3. │ Title   : window                                 │
  4. │ Purpose : Set global window attributes                     │
  5. │                                         │
  6. │    Written by Jack Zucker - 75766,1336    301-794-5950  on  1/22/86     │
  7. └────────────────────────────────────────────────────────────────────────────┘
  8. */
  9.  
  10. window( frow1 , fcol1 , frow2 , fcol2 )
  11. int frow1,fcol1,frow2,fcol2;
  12. {
  13.    extern _row1,_col1,_row2,_col2,g_row,g_col;
  14.   _row1 = frow1;
  15.   _col1 = fcol1;
  16.   _row2 = frow2;
  17.   _col2 = fcol2;
  18.   g_row = frow1;
  19.   g_col = fcol1;
  20. }
  21.