home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BDIRVID.H Header file for C TOOLS PLUS Generic Video Functions:
- * Direct version
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- *
- **/
-
- #ifndef DEF_BGENVID /* Prevent redefinition. */
-
- #define GV_BIOS 0
- #define GV_DIRECT 1
-
- #define GV_OPTION (GV_DIRECT) /* Read/write directly from/to */
- /* video memory. */
-
- #if ((GV_OPTION) == (GV_BIOS))
- #include <bscreen.h>
- #else
- #include <bvideo.h>
- #endif
-
- int gvscroll(int,int, /* Vertically scroll rectangle */
- int,int,int,int,int); /* on current display page */
- /* */
- int gvhoriz(int,int, /* Horizontally scroll rectangle*/
- int,int,int,int,int); /* on current display page */
- /* */
- int gvatrect(int,int,int,int,int,int);/* Fill rectangle on current */
- /* display page with an */
- /* attribute. */
- /* */
- int gvrdrect(int,int,int,int, /* Read rectangle from current */
- char *,int); /* display page. */
- /* */
- int gvwrrect(int,int,int,int, /* Write rectangle to current */
- char *,int,int,int); /* display page. */
-
-
- #define DEF_BGENVID 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BGENVID" */