Add stub for ShellDDEInit to let Windows explorer.exe get past the
beginning.
This commit is contained in:
parent
ae78d17f9d
commit
38deeb4fd2
|
@ -179,7 +179,7 @@
|
|||
185 stub SHHandleDiskFull
|
||||
186 stdcall ILGetDisplayNameEx(ptr ptr ptr long)
|
||||
187 stub ILGetPseudoNameW
|
||||
188 stub ShellDDEInit
|
||||
188 stdcall ShellDDEInit(long)
|
||||
189 stdcall ILCreateFromPathA(str)
|
||||
190 stdcall ILCreateFromPathW(wstr)
|
||||
195 stdcall SHFree(ptr)
|
||||
|
|
|
@ -859,6 +859,15 @@ void WINAPI FreeIconList( DWORD dw )
|
|||
{ FIXME("(%lx): stub\n",dw);
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************************
|
||||
* ShellDDEInit (SHELL32.@)
|
||||
*/
|
||||
void WINAPI ShellDDEInit(BOOL start)
|
||||
{
|
||||
FIXME("stub: %d\n", start);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DllGetVersion [SHELL32.@]
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue