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:
Pascal/Delphi Source File  |  1993-09-30  |  240 b   |  15 lines

  1. program main;
  2. uses fgmain, fgmisc;
  3.  
  4. var
  5.   status : integer;
  6.  
  7. begin
  8.   fg_setmode(-1);
  9.   status := fg_mouseini;
  10.   if (status < 0) then
  11.     writeln('Mouse not available.')
  12.   else
  13.     writeln(status,' button mouse found.');
  14. end.
  15.