Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3c53fcc4
Commit
3c53fcc4
authored
Sep 02, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Sep 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Fix the process access rights value for Vista.
parent
83b21a6d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
security.c
dlls/advapi32/tests/security.c
+1
-1
winnt.h
include/winnt.h
+1
-0
No files found.
dlls/advapi32/tests/security.c
View file @
3c53fcc4
...
@@ -1900,7 +1900,7 @@ static void test_process_security_child(void)
...
@@ -1900,7 +1900,7 @@ static void test_process_security_child(void)
&
handle
,
PROCESS_ALL_ACCESS
,
TRUE
,
0
),
&
handle
,
PROCESS_ALL_ACCESS
,
TRUE
,
0
),
"duplicating handle err:%d
\n
"
,
GetLastError
());
"duplicating handle err:%d
\n
"
,
GetLastError
());
TEST_GRANTED_ACCESS2
(
handle
,
PROCESS_ALL_ACCESS
,
TEST_GRANTED_ACCESS2
(
handle
,
PROCESS_ALL_ACCESS
,
STANDARD_RIGHTS_ALL
|
SPECIFIC_RIGHTS_ALL
);
PROCESS_ALL_ACCESS
|
PROCESS_QUERY_LIMITED_INFORMATION
);
ok
(
DuplicateHandle
(
GetCurrentProcess
(),
handle
,
GetCurrentProcess
(),
ok
(
DuplicateHandle
(
GetCurrentProcess
(),
handle
,
GetCurrentProcess
(),
&
handle1
,
PROCESS_VM_READ
,
TRUE
,
0
),
&
handle1
,
PROCESS_VM_READ
,
TRUE
,
0
),
"duplicating handle err:%d
\n
"
,
GetLastError
());
"duplicating handle err:%d
\n
"
,
GetLastError
());
...
...
include/winnt.h
View file @
3c53fcc4
...
@@ -4023,6 +4023,7 @@ typedef enum tagSID_NAME_USE {
...
@@ -4023,6 +4023,7 @@ typedef enum tagSID_NAME_USE {
#define PROCESS_SET_INFORMATION 0x0200
#define PROCESS_SET_INFORMATION 0x0200
#define PROCESS_QUERY_INFORMATION 0x0400
#define PROCESS_QUERY_INFORMATION 0x0400
#define PROCESS_SUSPEND_RESUME 0x0800
#define PROCESS_SUSPEND_RESUME 0x0800
#define PROCESS_QUERY_LIMITED_INFORMATION 0x1000
#define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xfff)
#define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xfff)
#define THREAD_TERMINATE 0x0001
#define THREAD_TERMINATE 0x0001
...
...
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