mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
fix IsUserAnAdmin
svn path=/trunk/; revision=28632
This commit is contained in:
parent
68c9a2c5a0
commit
d19fc5d52d
2 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
|
@ -1225,10 +1225,10 @@ BOOL WINAPI FileIconInit(BOOL bFullInit)
|
|||
return 0;
|
||||
}
|
||||
/*************************************************************************
|
||||
* IsUserAdmin [SHELL32.680] NT 4.0
|
||||
* IsUserAnAdmin [SHELL32.680] NT 4.0
|
||||
*
|
||||
*/
|
||||
HRESULT WINAPI IsUserAdmin(void)
|
||||
BOOL WINAPI IsUserAnAdmin(VOID)
|
||||
{ FIXME("stub\n");
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue