I need to utilize some functions in a 3rd party dll. I'm using the
DECLARE statement, but I keep getting the "Cannot find entry point
FuncName in the DLL".
I used dumpbin /exports on the DLL. The function names look like
this:
_Function1@8
_Function2@8
I've also tried:
DECLARE integer FunctionName IN that.dll ALIAS "_Function1@8"
But this returns the same error.
Can someone help me with these decorated function names.
Thanks!