home *** CD-ROM | disk | FTP | other *** search
/ HOT Scene Stuff / hotscenestuffzyklop1996.iso / demos / sunknown / xgraf.h < prev    next >
C/C++ Source or Header  |  1994-04-06  |  527b  |  22 lines

  1. // BASIC MODE X (320x240x256) FUNCTIONS
  2.  
  3. #ifndef _XGRAF_H
  4. #define _XGRAF_H
  5.  
  6. #include "global.h"
  7.  
  8. void modex(int not13=0);
  9. void textmode(void);
  10. void frame(void);
  11. void yoffset(int yoff);
  12. void putpixel(int x,int y,byte color);
  13. void putabspixel(word adr,byte plan, byte color, word sseg=0xa000);
  14. void setrgb(byte color,byte red,byte green, byte blue);
  15. unsigned char getpixel(int x,int y);
  16. void setpalette(char *filename);
  17. void updatepalette(byte *pal);
  18. void switchpage(word from,word to,byte method);
  19.  
  20. #endif
  21.  
  22.