home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / PTDCHAR.H < prev    next >
Text File  |  1990-04-02  |  1KB  |  33 lines

  1. /*
  2.     ptdchar.h    7/11/88
  3.  
  4.     % Character oriented window painting code
  5.     By Ted.
  6.  
  7.     OWL 1.2
  8.     Copyright (c) 1988, by Oakland Group, Inc.
  9.     ALL RIGHTS RESERVED.
  10.  
  11.     Revision History:
  12.     -----------------
  13.      7/27/88 jmd    Converted DrawLine to take an opbox
  14.  
  15.      3/28/90 jmd    ansi-fied
  16. */
  17. /* -------------------------------------------------------------------------- */
  18. /* PTDCHAR.C */
  19. extern void        ptd_DrawString(ptd_struct *ptd, int row, int col, char *string, byte attr, int slen);
  20.  
  21. /* PTDLINE.C */
  22. extern void        ptd_DrawCharBox(ptd_struct *ptd, char *boxchar, ocbox *cboxp, byte attr);
  23. extern void        ptd_DrawCharLine(ptd_struct *ptd, char *linechar, ocbox *cboxp, byte attr);
  24.  
  25. /* PTDFRAME.C */
  26. extern void        ptd_ClearFrame(ptd_struct *ptd, opcoord xoffs, opcoord yoffs, odim width, odim height, opixval color);
  27.  
  28. /* PTDPIXCH.C */
  29. extern void        ptd_DrawPixCharBox(ptd_struct *ptd, opbox *boxp, char *boxchar, ofont_type font, byte attr);
  30. extern void        ptd_DrawPixCharLine(ptd_struct *ptd, opcoord x, opcoord y, boolean down, char *linechar, ofont_type font, byte attr, unsigned len);
  31. /* -------------------------------------------------------------------------- */
  32.  
  33.