Date: Wed, 19 Mar 1997 22:00:51 -0600 (CST) From: Andrew Deren To: Abraham John Kannankeril cc: djgpp AT delorie DOT com Subject: Re: Graphics not working In-Reply-To: <33305EA3.243F@wsunix.wsu.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Are you using GRX? If not this is not going to work. you will need GRX which I believe (I do not use it personally) has like Borland function calls. I would suggest using allegro for graphics though. On Wed, 19 Mar 1997, Abraham John Kannankeril wrote: > The following program is giving errors. Please help us!!! > > > #include > #include > #include > #include > #include > #include > > int main() > { > int gdriver=DETECT,gmode, errorcode; > int midx,midy; > > > initgraph(&gdriver,&gmode,"" ); > errorcode=graphresult(); > if (errorcode!=grOk) > { > cout<<"Graphics function error: "< cout<<"Hit a key to stop: "; > getch(); > exit(1); > } > > setbkcolor(BLACK); > setcolor (BLUE); > closegraph(); > return (0); > } > > > > The program compiled without errors, but while trying to run the program > it gave us following errors > > Error: grph1.o: In function 'main': > Error: undefined reference to 'initgraph' > In function 'setcolor(int)': > undefined reference to '__gr_color' > There were some errors > > It gave similar errors for 'setbkcolor()' too. > > Abraham & Arti >