home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 344_01 / crt.h < prev    next >
Text File  |  1989-10-29  |  857b  |  31 lines

  1.  
  2. /*
  3.  *      HEADER:         ;
  4.  *      TITLE:          PROTOTYPES for memrite.obj and litebar.obj;
  5.  *      DATE:           10/29/1989;
  6.  *      VERSION:        1.0;
  7.  *      FILENAME:       CRT.H;
  8.  *      SEE-ALSO:       LITEBAR.ASM, MEMRITE.ASM;
  9.  *      AUTHORS:        Michael Kelly;
  10.  */
  11.  
  12. #define HORIZ 0
  13. #define VERT 1
  14.  
  15. /*
  16.  *  sets attribute on IBM screens in text mode without changing text.
  17.  *  works on any video page either vertically or horizontally.
  18.  *  handy for light bar menus and putting shadows on windows.
  19.  /
  20. extern void far pascal litebar(
  21.     int atr,int row,int col,int page,int len,int dir
  22.     );
  23.  
  24. /*
  25.  *  writes text and attribute to IBM text screens on any video page
  26.  *  either vertically or horizontally.
  27.  */
  28. extern void far pascal memrite(
  29.     int atr,int row,int col,int page,int dir,char far *str
  30.     );
  31.