home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / WINCLIP / EXAM113.C < prev    next >
C/C++ Source or Header  |  1993-12-01  |  259b  |  13 lines

  1.   #include "window.h"
  2.  
  3.   VBLOCKPTR v;
  4.  
  5.   main()
  6.   {
  7.     WindowInitializeSystem();
  8.     v = VideoSave(1,1,25,80);   /* Save Rectangular region */
  9.  
  10.     /* Check if NULL */
  11.     if (v == (VBLOCKPTR)0)
  12.       VideoWriteString("Trouble saving video");
  13.   }