home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BVIDEO.H Header file for Direct Video functions for C TOOLS PLUS
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- *
- **/
-
- #ifndef DEF_BVIDEO /* Prevent redefinition. */
-
- #include <butility.h>
-
- /* Function declarations */
-
- int virdrect(int,int,int,int, /* Read rectangle from video */
- char *,int); /* memory. */
- /* */
- int viwrrect(int,int,int,int, /* Write rectangle to video */
- char *,int,int,int); /* memory. */
- /* */
- int viatrect(int,int,int,int,int,int);/* Change attributes in */
- /* rectangular region. */
- /* */
- int viscroll(int,int, /* Vertically scroll area on */
- int,int,int,int,int); /* current display page. */
- /* */
- int vihoriz(int,int, /* Horizontally scroll area on */
- int,int,int,int,int); /* current display page. */
-
- /* Declarations of internal functions. */
-
- ADS *viads(int,int,ADS *); /* Convert screen location to */
- /* physical address. */
- /* */
- int vidirect(ADS *,ADS *,int, /* Perform direct access to */
- int,int,int,int); /* video memory. */
-
-
- #define DEF_BVIDEO 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BVIDEO" */