XPOINT.H
上传用户:hanguang
上传日期:2007-04-01
资源大小:93k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XPOINT - 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. #ifndef _XPOINT_H_
  21. #define _XPOINT_H_
  22. /* FUNCTIONS =========================================================== */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26.  void x_put_pix(           /* Draw a pixel on the screen */
  27.              WORD X,
  28.              WORD Y,
  29.              WORD PageOffset,
  30.              WORD Color);
  31.  WORD x_get_pix(          /* Read a pixel from the screen */
  32.              WORD X,
  33.              WORD Y,
  34.      WORD PageBase);
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif