
/*     Prod 1.0 -- by Thomas Wenzel -- public domain      */
/* It's really nothing special at all, why should it? :-) */

#include <graphics/displayinfo.h>
#include <intuition/screens.h>
#include <utility/tagitem.h>
#include <proto/intuition.h>

int main(void) {

	char version[]="$VER: Prod 1.0 (20.04.95)";

	struct	TagItem ScreenTags[] = {
		SA_Left,			0,
		SA_Top,				0,
		SA_Width,			640,
		SA_Height,		400,
		SA_Behind,		FALSE,
		SA_DisplayID,	VGAPRODUCT_KEY,
		TAG_DONE
	};

	struct	Screen	*MyScreen;

	MyScreen=OpenScreenTagList(0,ScreenTags);

	if (MyScreen) CloseScreen(MyScreen);

	return(0);
}
