shlwapi: Added stub for ShellMessageBoxWrapW.
This commit is contained in:
parent
66a303d107
commit
cfcc9a755d
|
@ -4395,3 +4395,28 @@ DWORD WINAPI GetUIVersion(void)
|
|||
}
|
||||
return version;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ShellMessageBoxWrapW [SHLWAPI.388]
|
||||
*
|
||||
* loads a string resource for a module, displays the string in a
|
||||
* message box and writes it into the logfile
|
||||
*
|
||||
* PARAMS
|
||||
* mod [I] the module containing the string resource
|
||||
* unknown1 [I] FIXME
|
||||
* uId [I] the id of the string resource
|
||||
* title [I] the title of the message box
|
||||
* unknown2 [I] FIXME
|
||||
* filename [I] name of the logfile
|
||||
*
|
||||
* RETURNS
|
||||
* FIXME
|
||||
*/
|
||||
BOOL WINAPI ShellMessageBoxWrapW(HMODULE mod, DWORD unknown1, UINT uId,
|
||||
LPCWSTR title, DWORD unknown2, LPCWSTR filename)
|
||||
{
|
||||
FIXME("%p %lx %d %s %lx %s\n",
|
||||
mod, unknown1, uId, debugstr_w(title), unknown2, debugstr_w(filename));
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
@ -385,7 +385,7 @@
|
|||
385 stub -noname SHLoadRawAccelerators
|
||||
386 stub -noname SHQueryRawAccelerator
|
||||
387 stub -noname SHQueryRawAcceleratorMsg
|
||||
388 stub -noname ShellMessageBoxWrapW
|
||||
388 stdcall -noname ShellMessageBoxWrapW(ptr long long wstr long wstr)
|
||||
389 stdcall -noname GetSaveFileNameWrapW(ptr)
|
||||
390 stdcall -noname WNetRestoreConnectionWrapW(long wstr)
|
||||
391 stdcall -noname WNetGetLastErrorWrapW(ptr ptr long ptr long)
|
||||
|
|
Loading…
Reference in New Issue