Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a23c20ee
Commit
a23c20ee
authored
May 17, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Don't allow using wine/library.h with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7b494f13
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
1 deletion
+8
-1
kernel16_private.h
dlls/krnl386.exe16/kernel16_private.h
+1
-0
toolhelp.c
dlls/toolhelp.dll16/toolhelp.c
+1
-0
message.c
dlls/user.exe16/message.c
+1
-0
library.h
include/wine/library.h
+4
-0
winbase16.h
include/wine/winbase16.h
+0
-1
winevdm.c
programs/winevdm/winevdm.c
+1
-0
No files found.
dlls/krnl386.exe16/kernel16_private.h
View file @
a23c20ee
...
...
@@ -25,6 +25,7 @@
#include "winreg.h"
#include "winternl.h"
#include "wine/asm.h"
#include "wine/library.h"
#include "pshpack1.h"
...
...
dlls/toolhelp.dll16/toolhelp.c
View file @
a23c20ee
...
...
@@ -36,6 +36,7 @@
#include "wine/winbase16.h"
#include "toolhelp.h"
#include "wine/library.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
toolhelp
);
...
...
dlls/user.exe16/message.c
View file @
a23c20ee
...
...
@@ -30,6 +30,7 @@
#include "winerror.h"
#include "dde.h"
#include "user_private.h"
#include "wine/library.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msg
);
...
...
include/wine/library.h
View file @
a23c20ee
...
...
@@ -31,6 +31,10 @@
#error This file should not be used in Wine tests
#endif
#ifdef __WINE_USE_MSVCRT
#error This file should not be used with msvcrt headers
#endif
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
include/wine/winbase16.h
View file @
a23c20ee
...
...
@@ -24,7 +24,6 @@
#include <winbase.h>
#include <winnls.h>
#include <wine/windef16.h>
#include <wine/library.h>
#include <pshpack1.h>
...
...
programs/winevdm/winevdm.c
View file @
a23c20ee
...
...
@@ -31,6 +31,7 @@
#include "winuser.h"
#include "wincon.h"
#include "wine/unicode.h"
#include "wine/library.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
winevdm
);
...
...
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