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
e11f6e0e
Commit
e11f6e0e
authored
Feb 16, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Don't use wine/server.h.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4dacf60a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
comm.c
dlls/kernel32/comm.c
+1
-2
console.c
dlls/kernel32/console.c
+2
-2
process.c
dlls/kernel32/process.c
+0
-1
No files found.
dlls/kernel32/comm.c
View file @
e11f6e0e
...
@@ -24,13 +24,12 @@
...
@@ -24,13 +24,12 @@
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "winternl.h"
#include "winnls.h"
#include "winnls.h"
#include "winerror.h"
#include "winerror.h"
#include "winioctl.h"
#include "winioctl.h"
#include "ddk/ntddser.h"
#include "ddk/ntddser.h"
#include "wine/server.h"
#include "wine/debug.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
comm
);
WINE_DEFAULT_DEBUG_CHANNEL
(
comm
);
...
...
dlls/kernel32/console.c
View file @
e11f6e0e
...
@@ -33,11 +33,11 @@
...
@@ -33,11 +33,11 @@
#define WIN32_NO_STATUS
#define WIN32_NO_STATUS
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "winternl.h"
#include "winnls.h"
#include "winnls.h"
#include "winerror.h"
#include "winerror.h"
#include "wincon.h"
#include "wincon.h"
#include "wine/condrv.h"
#include "wine/condrv.h"
#include "wine/server.h"
#include "wine/exception.h"
#include "wine/exception.h"
#include "wine/debug.h"
#include "wine/debug.h"
#include "excpt.h"
#include "excpt.h"
...
@@ -59,7 +59,7 @@ HWND WINAPI GetConsoleWindow(void)
...
@@ -59,7 +59,7 @@ HWND WINAPI GetConsoleWindow(void)
ret
=
DeviceIoControl
(
RtlGetCurrentPeb
()
->
ProcessParameters
->
ConsoleHandle
,
ret
=
DeviceIoControl
(
RtlGetCurrentPeb
()
->
ProcessParameters
->
ConsoleHandle
,
IOCTL_CONDRV_GET_INPUT_INFO
,
NULL
,
0
,
&
info
,
sizeof
(
info
),
NULL
,
NULL
);
IOCTL_CONDRV_GET_INPUT_INFO
,
NULL
,
0
,
&
info
,
sizeof
(
info
),
NULL
,
NULL
);
return
ret
?
wine_server_ptr_handle
(
info
.
win
)
:
NULL
;
return
ret
?
LongToHandle
(
info
.
win
)
:
NULL
;
}
}
...
...
dlls/kernel32/process.c
View file @
e11f6e0e
...
@@ -36,7 +36,6 @@
...
@@ -36,7 +36,6 @@
#include "psapi.h"
#include "psapi.h"
#include "ddk/wdm.h"
#include "ddk/wdm.h"
#include "wine/exception.h"
#include "wine/exception.h"
#include "wine/server.h"
#include "wine/asm.h"
#include "wine/asm.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
...
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