Index: tests/test_runner/src/test_runner.cpp =================================================================== diff -u -N -r2e23b5892ef4d4bb1ee2c6cde893004a71a11510 -rb712554e2b3602ce7242c7ff1cd7745b03378440 --- tests/test_runner/src/test_runner.cpp (.../test_runner.cpp) (revision 2e23b5892ef4d4bb1ee2c6cde893004a71a11510) +++ tests/test_runner/src/test_runner.cpp (.../test_runner.cpp) (revision b712554e2b3602ce7242c7ff1cd7745b03378440) @@ -21,7 +21,7 @@ HMODULE module = LoadLibrary(pszLibName); if(module) { - typedef int(*pfnRunTests)(int argc, TCHAR* argv[]); + typedef int(__stdcall *pfnRunTests)(int argc, TCHAR* argv[]); pfnRunTests pfnFunc = (pfnRunTests)::GetProcAddress(module, "_RunTests@8"); if(!pfnFunc)