home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
tos
/
progut~1
/
stdwin.zoo
/
test
/
test1.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
|
1989-10-17
|
250 b
|
16 lines
/* Basic test -- open and close a window; no output or events. */
#include "stdwin.h"
main(argc, argv)
int argc;
char **argv;
{
WINDOW *win;
winitnew(&argc, &argv);
win= wopen("Basic test", (void (*)()) 0);
wclose(win);
wdone();
exit(0);
}