##// END OF EJS Templates
exewrapper: report name of failed private DLL in error message...
Adrian Buehlmann -
r26663:fa6858be default
parent child Browse files
Show More
@@ -90,7 +90,8 b' int main(int argc, char *argv[])'
90 strcat_s(pydllfile, sizeof(pydllfile), "\\" HGPYTHONLIB);
90 strcat_s(pydllfile, sizeof(pydllfile), "\\" HGPYTHONLIB);
91 pydll = LoadLibrary(pydllfile);
91 pydll = LoadLibrary(pydllfile);
92 if (pydll == NULL) {
92 if (pydll == NULL) {
93 err = "failed to load private Python DLL";
93 err = "failed to load private Python DLL "
94 HGPYTHONLIB ".dll";
94 goto bail;
95 goto bail;
95 }
96 }
96 Py_SetPythonHome = (void*)GetProcAddress(pydll,
97 Py_SetPythonHome = (void*)GetProcAddress(pydll,
General Comments 0
You need to be logged in to leave comments. Login now