coddeblocks graphics.h: No such file or directory|
- get the SDK's you need (those who provide the header and probably library files) - install / extract the files to a place as you like - setup the include path's for the compiler and linker correctly in your project options
BTW: graphics.h is not a default C/C++ include file. I don't know what framework it belongs to - you need to figure out yourself. C::B cannot and will not ship with each and every framework (as every other IDE does not, too). It just provided you with the MinGW/GCC compilers and files.
Title: Re: missing header files
Post by: ollydbg on April 20, 2009, 01:09:13 pm
graphics.h is an old Borland Turbo C++ or Borland C++ header file support graphics in MS-DOS.
Also, someone has created a version for running in windows. You can search it by Google.
Title: Re: missing header files
Post by: saidus on April 23, 2009, 12:13:11 pm
Code
#include <graphics.h> #include <conio.h>
are the TCC header from borland i think you can find what u are seeking in this site http://www.delorie.com/djgpp/ (http://www.delorie.com/djgpp/) :D