home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / PCTV1N4.ZIP / PRINTSCR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-13  |  145 b   |  10 lines

  1. #include <dos.h>
  2.  
  3. void print_screen(int turn_on)
  4. {
  5.   if (turn_on)
  6.     pokeb(0x0050, 0x0000, 0);
  7.   else
  8.     pokeb(0x0050, 0x0000, 1);
  9. }
  10.