Mail Archives: djgpp/1997/12/22/03:21:00
On 22 Dec 1997, Ashod wrote:
> does djgpp support protected mode tsr and/or dlls, also if i run a djgpp
> in windows and then start another djgpp in another window ( i.e not
> one app spawning another), can the two talk.
First, protected-mode TSRs can only be supported if you have a
DPMI 1.0 server. Since Windows only implements DPMI 0.9, you can't
have this under Windows.
Second, two DOS boxes can only talk to each other through some global
TSR (i.e., one that is loaded *before* Windows, and is therefore
mapped into each DOS box address space). TSRs that are loaded *after*
Windows loads are local to the DOS box where they are loaded, and so
have no easy means of talking to each other through memory.
One way of such communications is by using the Windows clipboard. I'm
told that this can be quite slow, but if your application doesn't need
speedy communications, it will probably do.
- Raw text -