Commit 535f32ff authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Stub for GetUserObjectSecurity.

parent f74fa4e6
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment