I am trying to compile a program which includes the graphics.h
header file for C. I have added the graphics.h
and winbgim.h
header fil
If you try to compile the source code with including “graphics.h” in code::blocks IDE you have to setup winBGIm
library.
WinBGIm
from http://winbgim.codecutter.org/ or use (direct link)graphics.h
, go to line 302
change int right=0
to int top=0
graphics.h
and winbgim.h
files in include folder of your compiler directory.libbgi.a
to lib folder of your compiler directory Settings
>> Compiler and debugger
>> linker settings
Add
button in link libraries part, browse and select libbgi.a
file -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32
Ok
You can also check this video tutorial.