home *** CD-ROM | disk | FTP | other *** search
- /* EXAMPLE 1: Your first window
- ----------------------------------------------------------------------*/
- #include <stdio.h>
- #include <conio.h>
- #ifdef __TURBOC__
- #include <alloc.h>
- #else
- #include <malloc.h>
- #endif
- #include "wndwc21.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();
- }