Message-ID: <3578ACFB.5C91A807@usa.net> Date: Fri, 05 Jun 1998 19:44:11 -0700 From: Steve Isaacs MIME-Version: 1.0 To: Eli Zaretskii CC: djgpp AT delorie DOT com Subject: Re: Newbie application question. References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Precedence: bulk Thanks Eli! This is beginning to narrow things down for us. Eli Zaretskii wrote: <........snip> > > - What would be needed to install multiple handers? > > I don't understand this. Do you mean to have them on some chain, > whereby each handler calls the previous one? No and yes. No, more like shared libraries or DLLs each loaded separately and callable from real-mode as well as from each other via software interrupts (unlike shared libraries -- no late binding). And, to a certain degree, yes. We likely will have some instances where interrupt chaining will be required. For example, a network redirector that uses the INT 2F multiplex protocol. Or another example would be an INT 15 4F based keyboard mapper. Steve