shell32: Add a stub for RegenerateUserEnvironment.

oldstable
Austin English 2014-11-11 19:41:03 -06:00 committed by Alexandre Julliard
parent afc6962a24
commit 66662a87c0
2 changed files with 10 additions and 1 deletions

View File

@ -324,7 +324,7 @@
@ stub RealShellExecuteExA
@ stub RealShellExecuteExW
@ stub RealShellExecuteW
@ stub RegenerateUserEnvironment
@ stdcall RegenerateUserEnvironment(ptr long)
@ stdcall SetCurrentProcessExplicitAppUserModelID(wstr)
@ stdcall SHAddToRecentDocs (long ptr)
@ stdcall SHAppBarMessage(long ptr)

View File

@ -2097,3 +2097,12 @@ void WINAPI OpenAs_RunDLLW(HWND hwnd, HINSTANCE hinst, LPCWSTR cmdline, int cmds
{
FIXME("%p, %p, %s, %d\n", hwnd, hinst, debugstr_w(cmdline), cmdshow);
}
/*************************************************************************
* RegenerateUserEnvironment [SHELL32.@]
*/
BOOL WINAPI RegenerateUserEnvironment(WCHAR *wunknown, BOOL bunknown)
{
FIXME("stub: %p, %d\n", wunknown, bunknown);
return FALSE;
}