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
bd000a02
Commit
bd000a02
authored
Jun 06, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some unnecessary inclusions of thread.h
parent
ab29aa21
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
9 additions
and
12 deletions
+9
-12
console.c
dlls/kernel/console.c
+0
-1
environ.c
dlls/kernel/environ.c
+0
-1
except.c
dlls/kernel/except.c
+0
-1
fiber.c
dlls/kernel/fiber.c
+2
-1
heap.c
dlls/kernel/heap.c
+0
-1
process.c
dlls/kernel/process.c
+2
-1
error.c
dlls/ntdll/error.c
+0
-1
exception.c
dlls/ntdll/exception.c
+1
-1
heap.c
dlls/ntdll/heap.c
+0
-1
resource.c
dlls/ntdll/resource.c
+0
-1
virtual.c
dlls/ntdll/virtual.c
+4
-1
relay.c
dlls/winedos/relay.c
+0
-1
No files found.
dlls/kernel/console.c
View file @
bd000a02
...
@@ -52,7 +52,6 @@
...
@@ -52,7 +52,6 @@
#include "excpt.h"
#include "excpt.h"
#include "console_private.h"
#include "console_private.h"
#include "kernel_private.h"
#include "kernel_private.h"
#include "thread.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
console
);
WINE_DEFAULT_DEBUG_CHANNEL
(
console
);
...
...
dlls/kernel/environ.c
View file @
bd000a02
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "winerror.h"
#include "winerror.h"
#include "thread.h"
#include "wine/server.h"
#include "wine/server.h"
#include "wine/library.h"
#include "wine/library.h"
#include "winternl.h"
#include "winternl.h"
...
...
dlls/kernel/except.c
View file @
bd000a02
...
@@ -50,7 +50,6 @@
...
@@ -50,7 +50,6 @@
#include "winuser.h"
#include "winuser.h"
#include "wine/exception.h"
#include "wine/exception.h"
#include "wine/library.h"
#include "wine/library.h"
#include "thread.h"
#include "excpt.h"
#include "excpt.h"
#include "wine/server.h"
#include "wine/server.h"
#include "wine/unicode.h"
#include "wine/unicode.h"
...
...
dlls/kernel/fiber.c
View file @
bd000a02
...
@@ -31,9 +31,10 @@
...
@@ -31,9 +31,10 @@
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "winerror.h"
#include "winerror.h"
#include "winreg.h"
#include "winternl.h"
#include "wine/exception.h"
#include "wine/exception.h"
#include "wine/library.h"
#include "wine/library.h"
#include "thread.h"
struct
fiber_data
struct
fiber_data
{
{
...
...
dlls/kernel/heap.c
View file @
bd000a02
...
@@ -47,7 +47,6 @@
...
@@ -47,7 +47,6 @@
#include "winreg.h"
#include "winreg.h"
#include "winternl.h"
#include "winternl.h"
#include "excpt.h"
#include "excpt.h"
#include "thread.h"
#include "wine/exception.h"
#include "wine/exception.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
...
dlls/kernel/process.c
View file @
bd000a02
...
@@ -37,7 +37,8 @@
...
@@ -37,7 +37,8 @@
#include "wine/winuser16.h"
#include "wine/winuser16.h"
#include "ntstatus.h"
#include "ntstatus.h"
#include "winioctl.h"
#include "winioctl.h"
#include "thread.h"
#include "winreg.h"
#include "winternl.h"
#include "module.h"
#include "module.h"
#include "kernel_private.h"
#include "kernel_private.h"
#include "wine/exception.h"
#include "wine/exception.h"
...
...
dlls/ntdll/error.c
View file @
bd000a02
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
#include "winreg.h"
#include "winreg.h"
#include "winternl.h"
#include "winternl.h"
#include "winerror.h"
#include "winerror.h"
#include "thread.h"
#include "wine/debug.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ntdll
);
WINE_DEFAULT_DEBUG_CHANNEL
(
ntdll
);
...
...
dlls/ntdll/exception.c
View file @
bd000a02
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
#include "ntstatus.h"
#include "ntstatus.h"
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "
thread
.h"
#include "
winreg
.h"
#include "winternl.h"
#include "winternl.h"
#include "wine/exception.h"
#include "wine/exception.h"
#include "wine/server.h"
#include "wine/server.h"
...
...
dlls/ntdll/heap.c
View file @
bd000a02
...
@@ -39,7 +39,6 @@
...
@@ -39,7 +39,6 @@
#include "winternl.h"
#include "winternl.h"
#include "winerror.h"
#include "winerror.h"
#include "winnt.h"
#include "winnt.h"
#include "thread.h"
#include "wine/debug.h"
#include "wine/debug.h"
#include "winternl.h"
#include "winternl.h"
#include "wine/server_protocol.h"
#include "wine/server_protocol.h"
...
...
dlls/ntdll/resource.c
View file @
bd000a02
...
@@ -42,7 +42,6 @@
...
@@ -42,7 +42,6 @@
#include "winreg.h"
#include "winreg.h"
#include "winternl.h"
#include "winternl.h"
#include "winerror.h"
#include "winerror.h"
#include "thread.h"
#include "excpt.h"
#include "excpt.h"
#include "wine/exception.h"
#include "wine/exception.h"
#include "wine/unicode.h"
#include "wine/unicode.h"
...
...
dlls/ntdll/virtual.c
View file @
bd000a02
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
# include <unistd.h>
# include <unistd.h>
#endif
#endif
#include <stdarg.h>
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
...
@@ -41,7 +42,9 @@
...
@@ -41,7 +42,9 @@
#define NONAMELESSUNION
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#define NONAMELESSSTRUCT
#include "ntstatus.h"
#include "ntstatus.h"
#include "thread.h"
#include "windef.h"
#include "winbase.h"
#include "winreg.h"
#include "winternl.h"
#include "winternl.h"
#include "winioctl.h"
#include "winioctl.h"
#include "wine/library.h"
#include "wine/library.h"
...
...
dlls/winedos/relay.c
View file @
bd000a02
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
*/
#include "dosexe.h"
#include "dosexe.h"
#include "thread.h"
#include "wine/winbase16.h"
#include "wine/winbase16.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