Date: Mon, 31 Mar 1997 23:38:07 -0500 (EST) From: firewind To: Bowers cc: djgpp AT delorie DOT com Subject: Re: Borland C to DJGPP In-Reply-To: <334044A4.3986@ntplx.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Mon, 31 Mar 1997, Bowers wrote: > I'm used to programming in Borland C. Can anyone give me any tips on > converting Borland programs to DJGPP? There are a lot of features I > don't know yet, so the sooner anyone can reply the better! If you don't deal with hardware, far pointers, or interrupts, you'll be fine. Otherwise, you'll have to do some converting. Far pointers are accomplished in DJGPP with the _far* functions; look these up in your libc.a reference. Interrupts are very tricky; the FAQ can give you a lot of good pointers, though.