mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fix shell32 spec file to properly export LogoffWindowsDialog as the proper ordinal (54) so that explorer won't crash on shutdown when calling it. Implement the LogoffWindowsDialog stub.
svn path=/trunk/; revision=17918
This commit is contained in:
parent
891e470c6d
commit
523371b73d
2 changed files with 10 additions and 0 deletions
|
@ -406,6 +406,15 @@ int WINAPI RestartDialogEx(HWND hWndOwner, LPCWSTR lpwstrReason, DWORD uFlags, D
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* LogoffWindowsDialog [SHELL32.54]
|
||||
*/
|
||||
|
||||
int WINAPI LogoffWindowsDialog(DWORD uFlags)
|
||||
{
|
||||
ERR("LogoffWindowsDialog is UNIMPLEMENTED\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* RestartDialog [SHELL32.59]
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
51 stdcall -noname PathResolve(str long long) PathResolveAW
|
||||
52 stdcall -noname PathGetArgs(str) PathGetArgsAW
|
||||
53 stdcall DoEnvironmentSubst(long long) DoEnvironmentSubstAW
|
||||
54 stdcall -noname LogoffWindowsDialog(ptr)
|
||||
55 stdcall -noname PathQuoteSpaces(ptr) PathQuoteSpacesAW
|
||||
56 stdcall -noname PathUnquoteSpaces(str) PathUnquoteSpacesAW
|
||||
57 stdcall -noname PathGetDriveNumber(str) PathGetDriveNumberAW
|
||||
|
|
Loading…
Reference in a new issue