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
e3607c98
Commit
e3607c98
authored
Oct 02, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for PsImpersonateClient.
parent
5c654716
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+12
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
e3607c98
...
...
@@ -1660,6 +1660,18 @@ BOOLEAN WINAPI PsGetVersion(ULONG *major, ULONG *minor, ULONG *build, UNICODE_ST
/***********************************************************************
* PsImpersonateClient (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
PsImpersonateClient
(
PETHREAD
Thread
,
PACCESS_TOKEN
Token
,
BOOLEAN
CopyOnOpen
,
BOOLEAN
EffectiveOnly
,
SECURITY_IMPERSONATION_LEVEL
ImpersonationLevel
)
{
FIXME
(
"(%p, %p, %u, %u, %u): stub
\n
"
,
Thread
,
Token
,
CopyOnOpen
,
EffectiveOnly
,
ImpersonationLevel
);
return
STATUS_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PsSetCreateProcessNotifyRoutine (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
PsSetCreateProcessNotifyRoutine
(
PCREATE_PROCESS_NOTIFY_ROUTINE
callback
,
BOOLEAN
remove
)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
e3607c98
...
...
@@ -885,7 +885,7 @@
@ stub PsGetThreadTeb
@ stub PsGetThreadWin32Thread
@ stdcall PsGetVersion(ptr ptr ptr ptr)
@ st
ub PsImpersonateClient
@ st
dcall PsImpersonateClient(ptr ptr long long long)
@ stub PsInitialSystemProcess
@ stub PsIsProcessBeingDebugged
@ stub PsIsSystemThread
...
...
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