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
1ac23b9b
Commit
1ac23b9b
authored
Dec 05, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Don't include wingdi16.h by default.
parent
4edcf1ca
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
26 additions
and
1 deletion
+26
-1
bidi.c
dlls/gdi32/bidi.c
+1
-0
driver.c
dlls/gdi32/driver.c
+1
-0
enhmetafile.c
dlls/gdi32/enhmetafile.c
+1
-0
init.c
dlls/gdi32/enhmfdrv/init.c
+1
-0
freetype.c
dlls/gdi32/freetype.c
+1
-0
gdi_main.c
dlls/gdi32/gdi_main.c
+1
-0
gdi_private.h
dlls/gdi32/gdi_private.h
+4
-1
gdiobj.c
dlls/gdi32/gdiobj.c
+1
-0
metafile.c
dlls/gdi32/metafile.c
+2
-0
graphics.c
dlls/gdi32/mfdrv/graphics.c
+5
-0
init.c
dlls/gdi32/mfdrv/init.c
+1
-0
mapping.c
dlls/gdi32/mfdrv/mapping.c
+4
-0
objects.c
dlls/gdi32/mfdrv/objects.c
+1
-0
text.c
dlls/gdi32/mfdrv/text.c
+1
-0
printdrv.c
dlls/gdi32/printdrv.c
+1
-0
No files found.
dlls/gdi32/bidi.c
View file @
1ac23b9b
...
...
@@ -46,6 +46,7 @@
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winnls.h"
#include "wine/debug.h"
#include "gdi_private.h"
...
...
dlls/gdi32/driver.c
View file @
1ac23b9b
...
...
@@ -29,6 +29,7 @@
#include "winbase.h"
#include "winreg.h"
#include "ddrawgdi.h"
#include "wine/winbase16.h"
#include "gdi_private.h"
#include "wine/unicode.h"
...
...
dlls/gdi32/enhmetafile.c
View file @
1ac23b9b
...
...
@@ -43,6 +43,7 @@
#include "wingdi.h"
#include "winnls.h"
#include "winerror.h"
#include "wine/wingdi16.h"
#include "gdi_private.h"
#include "wine/debug.h"
...
...
dlls/gdi32/enhmfdrv/init.c
View file @
1ac23b9b
...
...
@@ -25,6 +25,7 @@
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winnls.h"
#include "gdi_private.h"
#include "enhmfdrv/enhmetafiledrv.h"
#include "wine/debug.h"
...
...
dlls/gdi32/freetype.c
View file @
1ac23b9b
...
...
@@ -84,6 +84,7 @@
#include "winreg.h"
#include "wingdi.h"
#include "gdi_private.h"
#include "wine/library.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/list.h"
...
...
dlls/gdi32/gdi_main.c
View file @
1ac23b9b
...
...
@@ -23,6 +23,7 @@
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "wine/winbase16.h"
#include "gdi_private.h"
/***********************************************************************
...
...
dlls/gdi32/gdi_private.h
View file @
1ac23b9b
...
...
@@ -22,7 +22,10 @@
#define __WINE_GDI_PRIVATE_H
#include <math.h>
#include "wine/wingdi16.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
/* Metafile defines */
#define META_EOF 0x0000
...
...
dlls/gdi32/gdiobj.c
View file @
1ac23b9b
...
...
@@ -29,6 +29,7 @@
#include "winbase.h"
#include "wingdi.h"
#include "winreg.h"
#include "winnls.h"
#include "winerror.h"
#include "winternl.h"
...
...
dlls/gdi32/metafile.c
View file @
1ac23b9b
...
...
@@ -55,7 +55,9 @@
#include "winbase.h"
#include "wingdi.h"
#include "winreg.h"
#include "winnls.h"
#include "winternl.h"
#include "wine/wingdi16.h"
#include "gdi_private.h"
#include "wine/debug.h"
...
...
dlls/gdi32/mfdrv/graphics.c
View file @
1ac23b9b
...
...
@@ -18,9 +18,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "wine/wingdi16.h"
#include "mfdrv/metafiledrv.h"
#include "wine/debug.h"
...
...
dlls/gdi32/mfdrv/init.c
View file @
1ac23b9b
...
...
@@ -23,6 +23,7 @@
#include "windef.h"
#include "winbase.h"
#include "winnls.h"
#include "gdi_private.h"
#include "mfdrv/metafiledrv.h"
#include "wine/debug.h"
...
...
dlls/gdi32/mfdrv/mapping.c
View file @
1ac23b9b
...
...
@@ -18,6 +18,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "gdi_private.h"
#include "mfdrv/metafiledrv.h"
...
...
dlls/gdi32/mfdrv/objects.c
View file @
1ac23b9b
...
...
@@ -27,6 +27,7 @@
#include "winbase.h"
#include "wingdi.h"
#include "wownt32.h"
#include "wine/wingdi16.h"
#include "mfdrv/metafiledrv.h"
#include "gdi_private.h"
#include "wine/debug.h"
...
...
dlls/gdi32/mfdrv/text.c
View file @
1ac23b9b
...
...
@@ -23,6 +23,7 @@
#include "windef.h"
#include "winbase.h"
#include "wine/wingdi16.h"
#include "mfdrv/metafiledrv.h"
#include "wine/debug.h"
...
...
dlls/gdi32/printdrv.c
View file @
1ac23b9b
...
...
@@ -26,6 +26,7 @@
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winnls.h"
#include "winspool.h"
#include "winerror.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