New stubs GetUserObjectInformationA|W.
diff --git a/windows/user.c b/windows/user.c
index a8563b9..eedd30a 100644
--- a/windows/user.c
+++ b/windows/user.c
@@ -488,7 +488,7 @@
* 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 @@
/* 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;
+}