/*     EXAMPLE 8:  Cursor modes in each window
     ----------------------------------------------------------------------*/
     #include <conio.h>
     #include <dos.h>
     #include "wndwc20.h"

     void main()
     {
         qinit();
         initwindow( LIGHTGRAY_BG, 1, 0 );
         makewindow( 5, 20, 15, 40, WHITE+BLUE_BG, CYAN+BLUE_BG,
                     SINGLE_BORDER, WINDOW1 );
         setcursordefault( cursor_block );
         makewindow( 9, 30, 15, 40, WHITE+BROWN_BG, BROWN_BG,
                     EVEN_SOLID_BORDER, WINDOW2 );
         wwrite( 1, 1, "Upper left corner" );
         gotoeos();
         delay( 2000 );
         removewindow();
         delay( 2000 );
         removewindow();
     }

