Commit 8090784a authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

New stubs GetUserObjectInformationA|W.

parent 7f4d1f4e
......@@ -300,8 +300,8 @@ init MAIN_UserInit
296 stdcall GetTopWindow(long) GetTopWindow32
297 stdcall GetUpdateRect(long ptr long) GetUpdateRect32
298 stdcall GetUpdateRgn(long long long) GetUpdateRgn32
299 stub GetUserObjectInformationA
300 stub GetUserObjectInformationW
299 stdcall GetUserObjectInformationA (long long ptr long ptr) GetUserObjectInformation32A
300 stdcall GetUserObjectInformationW (long long ptr long ptr) GetUserObjectInformation32W
301 stub GetUserObjectSecurity
302 stdcall GetWindow(long long) GetWindow32
303 stdcall GetWindowContextHelpId(long) GetWindowContextHelpId
......
......@@ -488,7 +488,7 @@ DWORD WINAPI SetWindowStationUser(DWORD x1,DWORD x2) {
* SetLogonNotifyWindow (USER32.486)
*/
DWORD WINAPI SetLogonNotifyWindow(HWINSTA32 hwinsta,HWND32 hwnd) {
FIXME(win32,"(0x%lx,%ld),stub!\n",hwinsta,hwnd);
FIXME(win32,"(0x%x,%ld),stub!\n",hwinsta,hwnd);
return 1;
}
......@@ -499,3 +499,17 @@ VOID WINAPI LoadLocalFonts(VOID) {
/* are loaded. */
return;
}
/***********************************************************************
* GetUserObjectInformation32A (USER32.299)
*/
BOOL32 WINAPI GetUserObjectInformation32A( HANDLE32 hObj, int nIndex, LPVOID pvInfo, DWORD nLength, LPDWORD lpnLen )
{ FIXME(win32,"(0x%x %i %p %ld %p),stub!\n", hObj, nIndex, pvInfo, nLength, lpnLen );
return TRUE;
}
/***********************************************************************
* GetUserObjectInformation32W (USER32.300)
*/
BOOL32 WINAPI GetUserObjectInformation32W( HANDLE32 hObj, int nIndex, LPVOID pvInfo, DWORD nLength, LPDWORD lpnLen )
{ FIXME(win32,"(0x%x %i %p %ld %p),stub!\n", hObj, nIndex, pvInfo, nLength, lpnLen );
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