Date: Sun, 15 Oct 1995 10:50:52 +0200 (IST) From: Eli Zaretskii To: Brian Glass Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: printing On 12 Oct 1995, Brian Glass wrote: > I have a program that I have ported from Borland compilers to DJGPP. I > used to be able to print graphs using the DOS graphics driver and the > printscreen key. Unfortunately this no longer works. Is there > something that I can do to make this work? Am I doing something wrong? > If this cannot work with DJGPP, is there some library I use to do > printing from withing my program? I'd guess the interrupt generated by PrtScr key doesn't get to GRAPHICS when you run your program, that's why you don't get the screen printed. If I'm right, then you would have to hook that interrupt and chain it down the line to GRAPHICS to make it work.