home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / comm / ykh121.zip / YKHSRC.ZIP / TXTLIB.H < prev    next >
Text File  |  1992-11-15  |  989b  |  21 lines

  1. int far txt_init(unsigned height, char foreground, char background,
  2.                  char far* filename);
  3. int far txt_deinit(void);
  4. void far txt_put(unsigned txt,unsigned y, unsigned x);
  5. void far txt_ascii_put(unsigned ascii,unsigned y,unsigned x);
  6. void far txt_clear(unsigned y, unsigned x, unsigned height, unsigned width);
  7. void far txt_set(unsigned y, unsigned x, unsigned height, unsigned width);
  8. void far txt_xor(unsigned y, unsigned x, unsigned height, unsigned width);
  9. void far txt_bold8(unsigned y, unsigned x, unsigned height, unsigned width);
  10. void far txt_underline(unsigned y, unsigned x, unsigned height, unsigned width);
  11. void far txt_gray(unsigned y, unsigned x, unsigned height, unsigned width);
  12.  
  13. void far txt_fcopy(unsigned srcy,   unsigned srcx,
  14.                    unsigned desty,  unsigned destx,
  15.                    unsigned height, unsigned width  );
  16.  
  17. void far txt_bcopy(unsigned srcy,   unsigned srcx,
  18.                    unsigned desty,  unsigned destx,
  19.                    unsigned height, unsigned width  );
  20.  
  21.