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
e90635f5
Commit
e90635f5
authored
Feb 16, 2007
by
Stefan Dösinger
Committed by
Alexandre Julliard
Feb 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a CheckRemoteDebuggerPresent stub.
parent
5e37345b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
debugger.c
dlls/kernel32/debugger.c
+18
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
No files found.
dlls/kernel32/debugger.c
View file @
e90635f5
...
...
@@ -383,6 +383,24 @@ BOOL WINAPI IsDebuggerPresent(void)
return
NtCurrentTeb
()
->
Peb
->
BeingDebugged
;
}
/***********************************************************************
* CheckRemoteDebuggerPresent (KERNEL32.@)
*
* Allows a process to determine if there is a remote debugger
* attached.
*
* PARAMS
*
* RETURNS
*
* TRUE because it is a stub.
*/
BOOL
WINAPI
CheckRemoteDebuggerPresent
(
HANDLE
process
,
PBOOL
DebuggerPresent
)
{
FIXME
(
"(%p)->(%p): Stub!
\n
"
,
process
,
DebuggerPresent
);
*
DebuggerPresent
=
FALSE
;
return
TRUE
;
}
/***********************************************************************
* _DebugOutput (KERNEL.328)
...
...
dlls/kernel32/kernel32.spec
View file @
e90635f5
...
...
@@ -182,7 +182,7 @@
@ stub ChangeTimerQueueTimer
# @ stub CheckNameLegalDOS8Dot3A
# @ stub CheckNameLegalDOS8Dot3W
# @ stub CheckRemoteDebuggerPresent
@ stdcall CheckRemoteDebuggerPresent(long ptr)
@ stdcall ClearCommBreak(long)
@ stdcall ClearCommError(long ptr ptr)
@ stdcall CloseConsoleHandle(long)
...
...
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