Quote Originally Posted by Unull View Post
I used Dependency walker to see functions names and you were right, the names were decorated. I solved the problem using the decorated name in my GetProcAddress. Tried to put extern "C" in my .h file but the names were still decorated.
See the FAQ, as creating clean, unmangled exported names requires you to do the steps detailed here:

http://www.codeguru.com/forum/showthread.php?t=231254

Regards,

Paul McKenzie