home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
window
/
winclip
/
exam116.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-03-12
|
285 b
|
14 lines
#include "window.h"
VBLOCKPTR v;
main()
{
WindowInitializeSystem();
v = VideoSave(1,1,10,10);
for (i=1;i<=10;i++)
VideoWriteString("This is the save area. Press a key to restore.",i,1);
GET_KEY();
VideoRestore(v);
VideoFree(v);
}