home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / FGL110C.ZIP / 04-02.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-31  |  302 b   |  23 lines

  1. #include <fastgraf.h>
  2. #include <stdio.h>
  3.  
  4. void main(void);
  5.  
  6. void main()
  7. {
  8.    int maxx;
  9.    int maxy;
  10.    int mode;
  11.  
  12.    mode = fg_getmode();
  13.    fg_setmode(4);
  14.  
  15.    maxx = fg_getmaxx();
  16.    maxy = fg_getmaxy();
  17.  
  18.    fg_setmode(mode);
  19.    fg_reset();
  20.  
  21.    printf("(%d,%d)\n",maxx,maxy);
  22. }
  23.