home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Graphics / graphics-16000.iso / msdos / animutil / fastgfx / fg110c / 05-07.c < prev    next >
Text File  |  1992-01-30  |  271b  |  22 lines

  1. #include <fastgraf.h>
  2.  
  3. void main(void);
  4.  
  5. void main()
  6. {
  7.    int mode;
  8.  
  9.    mode = fg_getmode();
  10.    fg_setmode(15);
  11.  
  12.    fg_setcolor(4);
  13.    fg_text("Hello",5);
  14.    fg_waitkey();
  15.  
  16.    fg_palette(4,8);
  17.    fg_waitkey();
  18.  
  19.    fg_setmode(mode);
  20.    fg_reset();
  21. }
  22.