Date: Tue, 25 Nov 1997 13:59:29 +0200 (IST) From: Eli Zaretskii To: DidUReally cc: djgpp AT delorie DOT com Subject: Re: trouble with graph.h In-Reply-To: <19971123012001.UAA27801@ladder01.news.aol.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 23 Nov 1997, DidUReally wrote: > My compiler is asking for graph.h - which I don't have !?! The header is the least of your problems. In many cases, you can just omit the #include directive, like this: #ifndef __DJGPP__ #include graph.h #endif However, the real problem is to have all those graphics functions that the program calls, and which are most probably missing from the DJGPP library. So I would suggest first to identify all those missing functions, then find replacements for them in one of the graphics libraries available for DJGPP, and only then write a replacement for graph.h.