/*     EXAMPLE 10:  Screen design
     ----------------------------------------------------------------------*/
     #include <conio.h>
     #include <dos.h>
     #include "wndwc20.h"

     void main()
     {
         qinit();
         initwindow( LIGHTGRAY_BG, 1, 0 );
         makewindow( 5, 19, 17, 41, GREEN_BG, WHITE+GREEN_BG, VDOUBLE_BORDER,
                     WINDOW1 );
         tws.wsline = SINGLE_BORDER;    /* Don't want VDOUBLE_BORDER */
         wlineh ( 4, 1, tws.wcols );    /* Use wcols for full window width */
         wlineh ( 12, 1, tws.wcols );
         wbrdrh ( 8 );
         wbrdrv ( 20 );
         wbrdrpart( 8, 20, BRDR_CL );      /* For the Cross Line */
         getch();
     }

