home *** CD-ROM | disk | FTP | other *** search
- /*
- ┌────────────────────────────────────────────────────────────────────────────┐
- │ Title : window │
- │ Purpose : Set global window attributes │
- │ │
- │ Written by Jack Zucker - 75766,1336 301-794-5950 on 1/22/86 │
- └────────────────────────────────────────────────────────────────────────────┘
- */
-
- window( frow1 , fcol1 , frow2 , fcol2 )
- int frow1,fcol1,frow2,fcol2;
- {
- extern _row1,_col1,_row2,_col2,g_row,g_col;
- _row1 = frow1;
- _col1 = fcol1;
- _row2 = frow2;
- _col2 = fcol2;
- g_row = frow1;
- g_col = fcol1;
- }