Hi I am trying to use a custom DLL with Dev c++,
I have the Dll , the .h file and the .lib file
This is what I am doing

#include <windows.h>
#include "XXControls.h"

........

RedrawButton(.. , ..) ;

And am getting this linker error

[Linker error] undefined reference to `RedrawButton@8'

How can I use a custom dll like this ?