mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
[WIN32K]
- Stubpliment UOI_FLAGS flag in NtUserGetObjectInformation * Fixes 32 tests in user32_apitest GetUserObjectInformation svn path=/trunk/; revision=72515
This commit is contained in:
parent
8c89d519a9
commit
622507d06f
1 changed files with 15 additions and 1 deletions
|
@ -722,7 +722,21 @@ NtUserGetObjectInformation(
|
||||||
switch (nIndex)
|
switch (nIndex)
|
||||||
{
|
{
|
||||||
case UOI_FLAGS:
|
case UOI_FLAGS:
|
||||||
Status = STATUS_NOT_IMPLEMENTED;
|
nDataSize = sizeof(USEROBJECTFLAGS);
|
||||||
|
if (nLength >= nDataSize)
|
||||||
|
{
|
||||||
|
PUSEROBJECTFLAGS ObjectFlags = pvInformation;
|
||||||
|
|
||||||
|
ObjectFlags->fInherit = 0;
|
||||||
|
ObjectFlags->fReserved = 0;
|
||||||
|
ObjectFlags->dwFlags = 0;
|
||||||
|
|
||||||
|
Status = STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Status = STATUS_BUFFER_TOO_SMALL;
|
||||||
|
}
|
||||||
ERR("UOI_FLAGS unimplemented!\n");
|
ERR("UOI_FLAGS unimplemented!\n");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue