Author: gedmurphy Date: Wed Aug 29 00:13:09 2007 New Revision: 28632
URL: http://svn.reactos.org/svn/reactos?rev=28632&view=rev Log: fix IsUserAnAdmin
Modified: trunk/reactos/dll/win32/shell32/shell32.spec trunk/reactos/dll/win32/shell32/shellord.c
Modified: trunk/reactos/dll/win32/shell32/shell32.spec URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shell32.s... ============================================================================== --- trunk/reactos/dll/win32/shell32/shell32.spec (original) +++ trunk/reactos/dll/win32/shell32/shell32.spec Wed Aug 29 00:13:09 2007 @@ -244,7 +244,7 @@ 654 stdcall @(long long) shell32_654 # ReadCabinetState@8
660 stdcall -noname FileIconInit(long) - 680 stdcall -noname IsUserAdmin() + 680 stdcall -noname IsUserAnAdmin()
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW 730 stdcall -noname RestartDialogEx(long wstr long long)
Modified: trunk/reactos/dll/win32/shell32/shellord.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shellord.... ============================================================================== --- trunk/reactos/dll/win32/shell32/shellord.c (original) +++ trunk/reactos/dll/win32/shell32/shellord.c Wed Aug 29 00:13:09 2007 @@ -1225,10 +1225,10 @@ return 0; } /************************************************************************* - * IsUserAdmin [SHELL32.680] NT 4.0 - * - */ -HRESULT WINAPI IsUserAdmin(void) + * IsUserAnAdmin [SHELL32.680] NT 4.0 + * + */ +BOOL WINAPI IsUserAnAdmin(VOID) { FIXME("stub\n"); return TRUE; }