I am using the Bloodshed Dev C++ program to write a C program, and I am having problems getting my program to compile because the compiler says that there are a HUGE amount of syntax errors contained within the ImageMagick header files. Relevant code included below
Code: Select all
#include <stdio.h>
#include <string.h>
#include <wand/MagickWand.h>
Is there something I've done wrong or should I abandon my line of thought.
My program is trying to take user input then turn the text string into a DIB image but I can't compile past the #includes.
I have not changed any compiler options.
Please help.