/* EXAMPLE 1: Your first window
----------------------------------------------------------------------*/
#include <stdio.h>
#include <conio.h>
#include <alloc.h>
#include "wndwc20.h"
void main()
{
qinit();
initwindow( LIGHTGRAY_BG, 1, 0 ); /* Initialize and clear window */
makewindow( 5, 20, 15, 40, WHITE+BLUE_BG, CYAN+BLUE_BG,
SINGLE_BORDER, AWINDOW );
wwritec( 7, "Making windows is easy!" );
getch();
}