home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / GVECTORS.ZIP / XLINE.H < prev    next >
C/C++ Source or Header  |  1993-09-13  |  1KB  |  47 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XLINE - header file
  4. ;
  5. ;
  6. ;
  7. ; ****** XLIB - Mode X graphics library                ****************
  8. ; ******                                               ****************
  9. ; ****** Written By Themie Gouthas                     ****************
  10. ;
  11. ; egg@dstos3.dsto.gov.au
  12. ; teg@bart.dsto.gov.au
  13. ;
  14. ;  Terminology & notes:
  15. ;         VRAM ==   Video RAM
  16. ;         SRAM ==   System RAM
  17. ;         X coordinates are in pixels unless explicitly stated
  18. ;
  19. ;----------------------------------------------------------------------*/
  20.  
  21. #ifndef _XLINE_H_
  22. #define _XLINE_H_
  23.  
  24.  
  25. /* FUNCTIONS =========================================================== */
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30.  
  31. extern void x_line(     /* Draw a line, what else */
  32.          WORD x0,
  33.          WORD y0,
  34.          WORD x1,
  35.          WORD y1,
  36.          WORD color,
  37.          WORD PageBase);
  38.  
  39.  
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43.  
  44. #endif
  45.  
  46.  
  47.