home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * Name EDWRRECT -- Write a rectangular image to the screen.
- *
- * Synopsis edwrrect(pdata, u_row, u_col, l_row, l_col, buffer, gap,
- * fore, back, option);
- *
- * void *pdata Unused; see below.
- * The remaining parameters are identical to those passed
- * to VIWRRECT.
- *
- * Description EDWRRECT is a stub which simply discards the pdata
- * parameter and calls VIWRRECT with the remaining
- * parameters. Its sole purpose is to provide a routine
- * which has the same calling sequence as WNWRRECT, but
- * which uses VIWRRECT.
- *
- * Returns Nothing.
- *
- * Version 6.00 (C)Copyright Blaise Computing Inc. 1989
- *
- **/
- #include <bvideo.h>
- #include <bedit.h>
-
- void edwrrect(pdata, u_row, u_col, l_row, l_col, buffer, fore, back,
- option)
- void *pdata;
- int u_row, u_col, l_row, l_col;
- const char *buffer;
- int fore, back, option;
- {
- /* Supress unused parameter compiler warnings. */
- ((char *) pdata)++;
-
- viwrrect(u_row, u_col, l_row, l_col, buffer, fore, back, option);
-
- }