Sorry, but there are no more tags available to filter with.
-
Thanks that was exactly what I was missing, I just changed my function pointer from: int (*OPWrapper::SD_Destroy)(int Handle) = NULL; to int (__stdcall *OPWrapper::SD_Destroy)(int Handle) = NULL; and now all the function calls appear to be working perfectly.
-
How have you declared the function pointers that are being returned by GetProcAddress? The functions are exported from the SD2.dll using the __stdcall calling convention. If the function parameters are declared using a different calling convention, there is a good chance that you will receive this error...
Page 1 of 1 (2 items)