home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
animutil
/
fastgfx
/
fg303e
/
expas.arj
/
FGDOC
/
EXAMPLES
/
PASCAL
/
14-06.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-09-30
|
240 b
|
15 lines
program main;
uses fgmain, fgmisc;
var
status : integer;
begin
fg_setmode(-1);
status := fg_mouseini;
if (status < 0) then
writeln('Mouse not available.')
else
writeln(status,' button mouse found.');
end.