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
8268ed97
Commit
8268ed97
authored
Dec 28, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Do not include 16-bit headers in 32-bit files.
parent
4e3b5b87
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
12 deletions
+3
-12
console.c
dlls/kernel32/console.c
+0
-1
module.c
dlls/kernel32/module.c
+2
-1
process.c
dlls/kernel32/process.c
+1
-2
resource.c
dlls/kernel32/resource.c
+0
-7
thread.c
dlls/kernel32/thread.c
+0
-1
No files found.
dlls/kernel32/console.c
View file @
8268ed97
...
...
@@ -44,7 +44,6 @@
#include "winnls.h"
#include "winerror.h"
#include "wincon.h"
#include "wine/winbase16.h"
#include "wine/server.h"
#include "wine/exception.h"
#include "wine/unicode.h"
...
...
dlls/kernel32/module.c
View file @
8268ed97
...
...
@@ -31,7 +31,6 @@
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "wine/winbase16.h"
#include "winerror.h"
#include "windef.h"
#include "winbase.h"
...
...
@@ -44,6 +43,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
module
);
#define NE_FFLAGS_LIBMODULE 0x8000
static
WCHAR
*
dll_directory
;
/* extra path for SetDllDirectoryW */
static
CRITICAL_SECTION
dlldir_section
;
...
...
dlls/kernel32/process.c
View file @
8268ed97
...
...
@@ -43,10 +43,9 @@
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "winternl.h"
#include "kernel_private.h"
#include "wine/library.h"
#include "wine/server.h"
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
dlls/kernel32/resource.c
View file @
8268ed97
...
...
@@ -39,13 +39,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
resource
);
/* handle conversions */
#define HRSRC_32(h16) ((HRSRC)(ULONG_PTR)(h16))
#define HRSRC_16(h32) (LOWORD(h32))
#define HGLOBAL_32(h16) ((HGLOBAL)(ULONG_PTR)(h16))
#define HGLOBAL_16(h32) (LOWORD(h32))
#define HMODULE_16(h32) (LOWORD(h32))
/* retrieve the resource name to pass to the ntdll functions */
static
NTSTATUS
get_res_nameA
(
LPCSTR
name
,
UNICODE_STRING
*
str
)
{
...
...
dlls/kernel32/thread.c
View file @
8268ed97
...
...
@@ -35,7 +35,6 @@
#include "winbase.h"
#include "winerror.h"
#include "winternl.h"
#include "wine/winbase16.h"
#include "wine/exception.h"
#include "wine/library.h"
#include "wine/server.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