# HG changeset patch # User Daniel Atallah # Date 1115095253 0 # Node ID cfacc0de0d942d8ac81f04ef2725c22a235b33bf # Parent 04cb7363260d61a3d601b615c3f6b0f6a05d6663 [gaim-migrate @ 12614] dave142 in patch #1193896 noticed that the SetDllDirectory magic probably never worked... This fixes it. committer: Tailor Script diff -r 04cb7363260d -r cfacc0de0d94 src/win_gaim.c --- 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"); }