updated for version 7.3.034
Problem:    Win32: may be loading .dll from the wrong directory.
Solution:   Go to the Vim executable directory when opening a library.
diff --git a/src/if_python3.c b/src/if_python3.c
index 4aa7edf..e56cdbd 100644
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -88,7 +88,7 @@
 #  define close_dll dlclose
 #  define symbol_from_dll dlsym
 # else
-#  define load_dll LoadLibrary
+#  define load_dll vimLoadLib
 #  define close_dll FreeLibrary
 #  define symbol_from_dll GetProcAddress
 # endif