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
58eceff1
Commit
58eceff1
authored
Feb 16, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Don't use wine/server.h from the PE side.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c2c57e8d
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
8 additions
and
15 deletions
+8
-15
actctx.c
dlls/ntdll/actctx.c
+1
-0
atom.c
dlls/ntdll/atom.c
+0
-2
directory.c
dlls/ntdll/directory.c
+0
-1
exception.c
dlls/ntdll/exception.c
+0
-1
heap.c
dlls/ntdll/heap.c
+0
-1
loader.c
dlls/ntdll/loader.c
+1
-0
nt.c
dlls/ntdll/nt.c
+0
-1
ntdll_misc.h
dlls/ntdll/ntdll_misc.h
+0
-1
sync.c
dlls/ntdll/sync.c
+0
-1
thread.c
dlls/ntdll/thread.c
+0
-1
threadpool.c
dlls/ntdll/threadpool.c
+3
-4
registry.c
dlls/ntdll/unix/registry.c
+1
-0
security.c
dlls/ntdll/unix/security.c
+1
-0
unix_private.h
dlls/ntdll/unix/unix_private.h
+1
-0
unixlib.h
dlls/ntdll/unixlib.h
+0
-1
virtual.c
dlls/ntdll/virtual.c
+0
-1
No files found.
dlls/ntdll/actctx.c
View file @
58eceff1
...
...
@@ -24,6 +24,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
dlls/ntdll/atom.c
View file @
58eceff1
...
...
@@ -28,8 +28,6 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "wine/server.h"
#include "ntdll_misc.h"
#include "wine/debug.h"
...
...
dlls/ntdll/directory.c
View file @
58eceff1
...
...
@@ -36,7 +36,6 @@
#include "winternl.h"
#include "ddk/wdm.h"
#include "ntdll_misc.h"
#include "wine/server.h"
#include "wine/list.h"
#include "wine/debug.h"
#include "wine/exception.h"
...
...
dlls/ntdll/exception.c
View file @
58eceff1
...
...
@@ -32,7 +32,6 @@
#include "winternl.h"
#include "ddk/wdm.h"
#include "wine/exception.h"
#include "wine/server.h"
#include "wine/list.h"
#include "wine/debug.h"
#include "excpt.h"
...
...
dlls/ntdll/heap.c
View file @
58eceff1
...
...
@@ -36,7 +36,6 @@
#include "ntdll_misc.h"
#include "wine/list.h"
#include "wine/debug.h"
#include "wine/server.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
heap
);
...
...
dlls/ntdll/loader.c
View file @
58eceff1
...
...
@@ -21,6 +21,7 @@
#include <assert.h>
#include <stdarg.h>
#include <stdlib.h>
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
dlls/ntdll/nt.c
View file @
58eceff1
...
...
@@ -33,7 +33,6 @@
#include "windef.h"
#include "winternl.h"
#include "ntdll_misc.h"
#include "wine/server.h"
#include "ddk/wdm.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ntdll
);
...
...
dlls/ntdll/ntdll_misc.h
View file @
58eceff1
...
...
@@ -26,7 +26,6 @@
#include "winnt.h"
#include "winternl.h"
#include "unixlib.h"
#include "wine/server.h"
#include "wine/asm.h"
#define DECLARE_CRITICAL_SECTION(cs) \
...
...
dlls/ntdll/sync.c
View file @
58eceff1
...
...
@@ -33,7 +33,6 @@
#define NONAMELESSUNION
#include "windef.h"
#include "winternl.h"
#include "wine/server.h"
#include "wine/debug.h"
#include "ntdll_misc.h"
...
...
dlls/ntdll/thread.c
View file @
58eceff1
...
...
@@ -27,7 +27,6 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "winternl.h"
#include "wine/server.h"
#include "wine/debug.h"
#include "ntdll_misc.h"
#include "ddk/wdm.h"
...
...
dlls/ntdll/threadpool.c
View file @
58eceff1
...
...
@@ -1090,8 +1090,7 @@ static void CALLBACK timerqueue_thread_proc( void *param )
}
}
timeout_lower
=
TIMEOUT_INFINITE
;
timeout_upper
=
TIMEOUT_INFINITE
;
timeout_lower
=
timeout_upper
=
MAXLONGLONG
;
/* Determine next timeout and use the window length to optimize wakeup times. */
LIST_FOR_EACH_ENTRY
(
other_timer
,
&
timerqueue
.
pending_timers
,
...
...
@@ -1247,7 +1246,7 @@ static void CALLBACK waitqueue_thread_proc( void *param )
for
(;;)
{
NtQuerySystemTime
(
&
now
);
timeout
.
QuadPart
=
TIMEOUT_INFINITE
;
timeout
.
QuadPart
=
MAXLONGLONG
;
num_handles
=
0
;
LIST_FOR_EACH_ENTRY_SAFE
(
wait
,
next
,
&
bucket
->
waiting
,
struct
threadpool_object
,
...
...
@@ -2985,7 +2984,7 @@ VOID WINAPI TpSetTimer( TP_TIMER *timer, LARGE_INTEGER *timeout, LONG period, LO
VOID
WINAPI
TpSetWait
(
TP_WAIT
*
wait
,
HANDLE
handle
,
LARGE_INTEGER
*
timeout
)
{
struct
threadpool_object
*
this
=
impl_from_TP_WAIT
(
wait
);
ULONGLONG
timestamp
=
TIMEOUT_INFINITE
;
ULONGLONG
timestamp
=
MAXLONGLONG
;
TRACE
(
"%p %p %p
\n
"
,
wait
,
handle
,
timeout
);
...
...
dlls/ntdll/unix/registry.c
View file @
58eceff1
...
...
@@ -30,6 +30,7 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "winternl.h"
#include "unix_private.h"
#include "wine/debug.h"
...
...
dlls/ntdll/unix/security.c
View file @
58eceff1
...
...
@@ -30,6 +30,7 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winternl.h"
#include "unix_private.h"
#include "wine/debug.h"
...
...
dlls/ntdll/unix/unix_private.h
View file @
58eceff1
...
...
@@ -24,6 +24,7 @@
#include <pthread.h>
#include <signal.h>
#include "unixlib.h"
#include "wine/server.h"
#include "wine/list.h"
#ifdef __i386__
...
...
dlls/ntdll/unixlib.h
View file @
58eceff1
...
...
@@ -21,7 +21,6 @@
#ifndef __NTDLL_UNIXLIB_H
#define __NTDLL_UNIXLIB_H
#include "wine/server.h"
#include "wine/debug.h"
struct
_DISPATCHER_CONTEXT
;
...
...
dlls/ntdll/virtual.c
View file @
58eceff1
...
...
@@ -31,7 +31,6 @@
#define NONAMELESSUNION
#include "windef.h"
#include "winternl.h"
#include "wine/server.h"
#include "wine/debug.h"
#include "ntdll_misc.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