home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / window / winclip / exam114.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-12  |  240 b   |  11 lines

  1.   #include "window.h"
  2.  
  3.   VBLOCKPTR v;
  4.  
  5.   main()
  6.   {
  7.     WindowInitializeSystem();
  8.     v = VideoSave(1,1,10,10);   /* Save Rectangular region defined by (1,1)
  9.                                    (10,10) */
  10.     VideoMove(v,1,10);
  11.   }