Stub for GetUserObjectSecurity.
This commit is contained in:
parent
f74fa4e6c8
commit
535f32ffd5
|
@ -302,7 +302,7 @@ init MAIN_UserInit
|
|||
298 stdcall GetUpdateRgn(long long long) GetUpdateRgn32
|
||||
299 stdcall GetUserObjectInformationA (long long ptr long ptr) GetUserObjectInformation32A
|
||||
300 stdcall GetUserObjectInformationW (long long ptr long ptr) GetUserObjectInformation32W
|
||||
301 stub GetUserObjectSecurity
|
||||
301 stdcall GetUserObjectSecurity (long ptr ptr long ptr) GetUserObjectSecurity32
|
||||
302 stdcall GetWindow(long long) GetWindow32
|
||||
303 stdcall GetWindowContextHelpId(long) GetWindowContextHelpId
|
||||
304 stdcall GetWindowDC(long) GetWindowDC32
|
||||
|
|
|
@ -512,3 +512,11 @@ BOOL32 WINAPI GetUserObjectInformation32W( HANDLE32 hObj, int nIndex, LPVOID pvI
|
|||
{ FIXME(win32,"(0x%x %i %p %ld %p),stub!\n", hObj, nIndex, pvInfo, nLength, lpnLen );
|
||||
return TRUE;
|
||||
}
|
||||
/***********************************************************************
|
||||
* GetUserObjectSecurity32 (USER32.300)
|
||||
*/
|
||||
BOOL32 WINAPI GetUserObjectSecurity32(HANDLE32 hObj, SECURITY_INFORMATION * pSIRequested,
|
||||
PSECURITY_DESCRIPTOR pSID, DWORD nLength, LPDWORD lpnLengthNeeded)
|
||||
{ FIXME(win32,"(0x%x %p %p len=%ld %p),stub!\n", hObj, pSIRequested, pSID, nLength, lpnLengthNeeded);
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue