changeset 10898:cfacc0de0d94

[gaim-migrate @ 12614] dave142 in patch #1193896 noticed that the SetDllDirectory magic probably never worked... This fixes it. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Tue, 03 May 2005 04:40:53 +0000
parents 04cb7363260d
children 1e6bdc7175e9
files src/win_gaim.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/win_gaim.c	Tue May 03 02:52:39 2005 +0000
+++ b/src/win_gaim.c	Tue May 03 04:40:53 2005 +0000
@@ -104,7 +104,7 @@
         printf("GTK+ path found: %s\n", path);
 
         if((hmod=GetModuleHandle("kernel32.dll"))) {
-                MySetDllDirectory = (LPFNSETDLLDIRECTORY)GetProcAddress(hmod, "SetDllDirectory");
+                MySetDllDirectory = (LPFNSETDLLDIRECTORY)GetProcAddress(hmod, "SetDllDirectoryA");
                 if(!MySetDllDirectory)
                         printf("SetDllDirectory not supported\n");
         }