home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / KSLIB.ZIP / DEMO2.C < prev    next >
Text File  |  1991-08-01  |  393b  |  18 lines

  1. /*
  2. *
  3. *    Program to show the simplest form of window creation. It pops up a
  4. *    window, then waits for a keypress, then exits. Because it's the first
  5. *    window on the screen, you do not need to specify POPUP, as the DOS
  6. *    screen is automatically restored on exit.
  7. *
  8. */
  9.  
  10. #include "stdinc.h"
  11. #include "wn.h"
  12.  
  13. main()
  14. {
  15.     WNopen(25,5,55,15,BLACK|BKGR(LIGHTGRAY),DOUBLE);
  16.     KBgetch();
  17. }
  18.