Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4113fd87
Commit
4113fd87
authored
Apr 05, 2015
by
Andrew Cook
Committed by
Alexandre Julliard
Apr 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Return success for JobObjectBasicUIRestrictions.
parent
1a9810b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
sync.c
dlls/ntdll/sync.c
+4
-2
No files found.
dlls/ntdll/sync.c
View file @
4113fd87
...
...
@@ -634,7 +634,7 @@ NTSTATUS WINAPI NtQueryInformationJobObject( HANDLE handle, JOBOBJECTINFOCLASS c
*/
NTSTATUS
WINAPI
NtSetInformationJobObject
(
HANDLE
handle
,
JOBOBJECTINFOCLASS
class
,
PVOID
info
,
ULONG
len
)
{
NTSTATUS
status
=
STATUS_
SUCCESS
;
NTSTATUS
status
=
STATUS_
NOT_IMPLEMENTED
;
JOBOBJECT_BASIC_LIMIT_INFORMATION
*
basic_limit
;
ULONG
info_size
=
sizeof
(
JOBOBJECT_BASIC_LIMIT_INFORMATION
);
DWORD
limit_flags
=
JOB_OBJECT_BASIC_LIMIT_VALID_FLAGS
;
...
...
@@ -683,9 +683,11 @@ NTSTATUS WINAPI NtSetInformationJobObject( HANDLE handle, JOBOBJECTINFOCLASS cla
SERVER_END_REQ
;
break
;
case
JobObjectBasicUIRestrictions
:
status
=
STATUS_SUCCESS
;
/* fallthrough */
default:
FIXME
(
"stub: %p %u %p %u
\n
"
,
handle
,
class
,
info
,
len
);
return
STATUS_NOT_IMPLEMENTED
;
}
return
status
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment