Problem: Win32: Tcl library load does not use standard mechanism.
Solution: Call vimLoadLib() instead of LoadLibraryEx(). (Ken Takata)
/*
* Make all runtime-links of perl.
*
- * 1. Get module handle using LoadLibraryEx.
+ * 1. Get module handle using dlopen() or vimLoadLib().
* 2. Get pointer to perl function by GetProcAddress.
* 3. Repeat 2, until get all functions will be used.
*
if (hTclLib)
return OK;
- if (!(hTclLib = LoadLibraryEx(libname, NULL, 0)))
+ if (!(hTclLib = vimLoadLib(libname)))
{
if (verbose)
EMSG2(_(e_loadlib), libname);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 10,
/**/
9,
/**/