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
4a26da21
Commit
4a26da21
authored
Apr 13, 2005
by
Steven Edwards
Committed by
Alexandre Julliard
Apr 13, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partially implement CreateProcessAsUser.
parent
9a4f552f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
security.c
dlls/advapi32/security.c
+20
-4
No files found.
dlls/advapi32/security.c
View file @
4a26da21
...
...
@@ -3047,11 +3047,27 @@ BOOL WINAPI CreateProcessAsUserW(
LPSTARTUPINFOW
lpStartupInfo
,
LPPROCESS_INFORMATION
lpProcessInformation
)
{
FIXME
(
"%p %s %s %p %p %d 0x%08lx %p %s %p %p - stub
\n
"
,
hToken
,
debugstr_w
(
lpApplicationName
),
debugstr_w
(
lpCommandLine
),
lpProcessAttributes
,
lpThreadAttributes
,
bInheritHandles
,
dwCreationFlags
,
lpEnvironment
,
debugstr_w
(
lpCurrentDirectory
),
lpStartupInfo
,
lpProcessInformation
);
FIXME
(
"%p %s %s %p %p %d 0x%08lx %p %s %p %p - semi- stub
\n
"
,
hToken
,
debugstr_w
(
lpApplicationName
),
debugstr_w
(
lpCommandLine
),
lpProcessAttributes
,
lpThreadAttributes
,
bInheritHandles
,
dwCreationFlags
,
lpEnvironment
,
debugstr_w
(
lpCurrentDirectory
),
lpStartupInfo
,
lpProcessInformation
);
/* We should create the process with a suspended main thread */
if
(
!
CreateProcessW
(
lpApplicationName
,
lpCommandLine
,
lpProcessAttributes
,
lpThreadAttributes
,
bInheritHandles
,
dwCreationFlags
,
/* CREATE_SUSPENDED */
lpEnvironment
,
lpCurrentDirectory
,
lpStartupInfo
,
lpProcessInformation
))
{
return
FALSE
;
}
return
FALS
E
;
return
TRU
E
;
}
/******************************************************************************
...
...
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