home *** CD-ROM | disk | FTP | other *** search
- /*
- ** getvconf.c
- **
- ** Pictor, Version 1.51, Copyright (c) 1992-94 SoftCircuits
- ** Redistributed by permission.
- */
-
- #include "pictor.h"
-
- /*
- ** Returns information about the current display configuration.
- */
- void getvconfig(VIDEOSTRUCT *vs)
- {
- vs->segment = _PL_segment;
- vs->snowcheck = _PL_snowcheck;
- vs->rows = _PL_rows;
- vs->columns = _PL_columns;
- vs->mode = _PL_mode;
- vs->page = _PL_page;
- vs->colorsupport = _PL_colorsupport;
-
- } /* getvconfig */
-