#ifndef HICOLOR_H_
#define HICOLOR_H_

/*	 TYPEDEFS  */
typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef unsigned int uint;
typedef unsigned long ulong;

/*  FUNCTION PROTOTYPES  */
void InformFatal (char *fmt,...);
void 
PutVideoRow30H (
		 int startRow,	/* location to start display */
		 int startCol,	/* location to start display */
		 int length,	/* number of bytes to display */
		 WORD * buffer	/* data to be displayed */
);
     void SetHicolorMode (int mode);
     void SetVideoMode (int mode);
     void SetVideoPage (int page);

#endif
/* CONSTANTS */

#define IS_BOTTOM_UP 128
