Path: utzoo!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!usc!ucsd!nosc!crash!pnet01!uzun From: uzun@pnet01.cts.com (Roger Uzun) Newsgroups: comp.sys.amiga Subject: Re: Mythological software ? (was: FixIntuition Patch) Message-ID: <1409@crash.cts.com> Date: 9 Feb 90 04:16:03 GMT Sender: root@crash.cts.com Organization: People-Net [pnet01], El Cajon CA Lines: 49 I wrote the fixintuition patch and posted it to bix a while back Here is the source for lattice c ------------ #include #include #include #include #include #include #include /* be sure LockIBase, UnlockIBase, ViewAddress */ #include #include /* Written by W. Roger Uzun with tech guidance by jmackraz on bix * void main(void); void main() { ULONG lock; struct View *view; struct ViewPort *vp; if (!(IntuitionBase = (struct IntuitionBase *)OpenLibrary("intuition.library",33L))) { exit(0); } if (IntuitionBase->LibNode.lib_Version > 35) { CloseLibrary((struct Library *)IntuitionBase); exit(0); } while(1) { lock = LockIBase( 4L ); view = ViewAddress(); for(vp=view->ViewPort;vp;vp = vp->Next) if (vp->Modes & VP_HIDE) vp->DHeight = 0; UnlockIBase(lock); Delay(15L); } } UUCP: {hplabs!hp-sdd ucsd nosc}!crash!pnet01!uzun ARPA: crash!pnet01!uzun@nosc.mil INET: uzun@pnet01.cts.com