What this error sounds like is that somewhere in your header files or elsewhere, you have two different parameter lists for the same function. Or, in other words, you have a function with certain parameters defined in one place, and later on, the function is defined again with a different set of parameters. I think the compiler would have reported a redefine if the function was defined again with the same set of parameters as the first time.
Your solution to this problem may be to do some investigating into what functoin is being redefined. You could locate the function that pertains to your program the best, and comment out the other one.
On a related note, you can keep further questions on a topic you post by responding to the comments we make. This allows us to ke
ep all similar subject posts in the same thread. Thanks.