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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-01-31
|
302 b
|
23 lines
#include <fastgraf.h>
#include <stdio.h>
void main(void);
void main()
{
int maxx;
int maxy;
int mode;
mode = fg_getmode();
fg_setmode(4);
maxx = fg_getmaxx();
maxy = fg_getmaxy();
fg_setmode(mode);
fg_reset();
printf("(%d,%d)\n",maxx,maxy);
}