Date: Thu, 15 Oct 1998 12:34:38 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Edouard Laroche-Joubert cc: djgpp AT delorie DOT com Subject: Re: Argg, Text mode not find !? In-Reply-To: <702l4i$gna$1@minus.oleane.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Wed, 14 Oct 1998, Edouard Laroche-Joubert wrote: > I need to have (in text mode) 80 columns and 50 lines, in DOS it is > possible, in TC++ it is also possible ! Possible--how? AFAIK, there's no library function in TC++ to do that, you must go through int86 calls, right? > I'm sure their is a way to be into this mode in DJGPP !! First, you can use the same int86 calls as with TC++ (call functions 11h, 12h, and 01h of the interrupt 10h). But DJGPP also has a library function that will do that for you: _set_screen_lines. Look up its description in the library reference docs.