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
5bd46817
Commit
5bd46817
authored
Jun 28, 2010
by
Austin English
Committed by
Alexandre Julliard
Jun 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for NtSystemDebugControl.
parent
5dca2545
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
nt.c
dlls/ntdll/nt.c
+12
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
No files found.
dlls/ntdll/nt.c
View file @
5bd46817
...
...
@@ -1945,3 +1945,15 @@ NTSTATUS WINAPI NtAccessCheckAndAuditAlarm(PUNICODE_STRING SubsystemName, HANDLE
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* NtSystemDebugControl (NTDLL.@)
* ZwSystemDebugControl (NTDLL.@)
*/
NTSTATUS
WINAPI
NtSystemDebugControl
(
SYSDBG_COMMAND
command
,
PVOID
inbuffer
,
ULONG
inbuflength
,
PVOID
outbuffer
,
ULONG
outbuflength
,
PULONG
retlength
)
{
FIXME
(
"(%d, %p, %d, %p, %d, %p), stub
\n
"
,
command
,
inbuffer
,
inbuflength
,
outbuffer
,
outbuflength
,
retlength
);
return
STATUS_NOT_IMPLEMENTED
;
}
dlls/ntdll/ntdll.spec
View file @
5bd46817
...
...
@@ -353,7 +353,7 @@
@ stub NtStopProfile
# @ stub NtSuspendProcess
@ stdcall NtSuspendThread(long ptr)
@ st
ub NtSystemDebugControl
@ st
dcall NtSystemDebugControl(long ptr long ptr long ptr)
@ stdcall NtTerminateJobObject(long long)
@ stdcall NtTerminateProcess(long long)
@ stdcall NtTerminateThread(long long)
...
...
@@ -1209,7 +1209,7 @@
@ stub ZwStopProfile
# @ stub ZwSuspendProcess
@ stdcall ZwSuspendThread(long ptr) NtSuspendThread
@ st
ub Zw
SystemDebugControl
@ st
dcall ZwSystemDebugControl(long ptr long ptr long ptr) Nt
SystemDebugControl
@ stdcall ZwTerminateJobObject(long long) NtTerminateJobObject
@ stdcall ZwTerminateProcess(long long) NtTerminateProcess
@ stdcall ZwTerminateThread(long long) NtTerminateThread
...
...
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