1
0
Fork 0
topaz-pizza-timer-amigaos-204/justwindow.c

26 lines
404 B
C

#include <proto/intuition.h>
#include <proto/dos.h>
int main(void) {
struct Window *window;
window = OpenWindowTags(NULL,
WA_Title, "Topaz's Pizza Timer",
WA_Width, 240,
WA_Height, 80,
WA_Top, 20,
WA_Left, 20,
WA_DragBar, TRUE,
WA_DepthGadget, TRUE,
WA_CloseGadget, TRUE,
WA_Activate, TRUE,
TAG_END
);
Delay(200);
CloseWindow(window);
return 0;
}