http://bugs.winehq.org/show_bug.cgi?id=9159
--- Comment #16 from Jeremiah Flerchinger flerchjj@ieee.org 2009-05-01 21:32:58 --- I also still stand by thinking
+ if ((shell32 = LoadLibraryA( "shell32.dll" )) && + (pShellDDEInit = (void *)GetProcAddress( shell32, (LPCSTR)188))) + { + pShellDDEInit( TRUE ); + }
should be
+ if ((shdocvw = LoadLibraryA( "Shdocvw.dll" )) && + (pShellDDEInit = (void *)GetProcAddress( shdocvw, (LPCSTR)118))) + { + pShellDDEInit( TRUE ); + }
to be closer to what shell applications (like explorer) actually do.