[net.micro.att] How do you spell "how big is that window"?

guy@sun.uucp (Guy Harris) (05/28/85)

> #include <sys/font.h>
> #include <sys/window.h>
> #include <wind.h>
> 
> main()
> 	{
> 	struct uwdata thiswindow;
> 	extern int errno;
> 	int pid;
> 
> 	(void)ioctl(0,WIOCGETD,&thiswindow);
> 	thiswindow.uw_x = 0;
> 	thiswindow.uw_y = 16;
> 	thiswindow.uw_width = 720;
> 	thiswindow.uw_height = 132;
> 	thiswindow.uw_uflags |= NBORDER;
> 	(void)ioctl(0,WIOCSETD,&thiswindow);

Just out of curiosity, is this compatible with any of the windowing "ioctl"s
used in CTIX on the {Mini|Mega}Frame?  (I already know it's not compatible
with the windowing "ioctl"s provided for the Blit/DMD 5620, for SunWindows,
or with 4.3BSD - none of which are compatible with each other, either.)

	Guy Harris