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
fc296da4
Commit
fc296da4
authored
Feb 10, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed extra includes from ole.h and wingdi.h.
parent
d3e22d9d
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
47 additions
and
29 deletions
+47
-29
compobj.c
dlls/ole32/compobj.c
+2
-0
datacache.c
dlls/ole32/datacache.c
+3
-2
storage.c
dlls/ole32/storage.c
+6
-2
variant.c
dlls/oleaut32/variant.c
+10
-9
olecli_main.c
dlls/olecli/olecli_main.c
+4
-1
olesvr_main.c
dlls/olesvr/olesvr_main.c
+4
-1
cache.c
graphics/cache.c
+1
-0
escape.c
graphics/escape.c
+2
-1
text.c
graphics/ttydrv/text.c
+3
-2
color.h
include/color.h
+1
-0
enhmetafiledrv.h
include/enhmetafiledrv.h
+1
-0
metafiledrv.h
include/metafiledrv.h
+1
-0
ole.h
include/ole.h
+0
-9
psdrv.h
include/psdrv.h
+1
-0
win16drv.h
include/win16drv.h
+1
-0
wingdi.h
include/wingdi.h
+0
-2
winestub.c
library/winestub.c
+2
-0
cdrom.c
misc/cdrom.c
+2
-0
int2f.c
msdos/int2f.c
+2
-0
linedda.c
objects/linedda.c
+1
-0
No files found.
dlls/ole32/compobj.c
View file @
fc296da4
...
...
@@ -35,6 +35,8 @@
#include <time.h>
#include <assert.h>
#include "windef.h"
#include "wtypes.h"
#include "wingdi.h"
#include "wine/winbase16.h"
#include "winerror.h"
#include "wownt32.h"
...
...
dlls/ole32/datacache.c
View file @
fc296da4
...
...
@@ -31,14 +31,15 @@
* was stored but that's about it.
*/
#include <assert.h>
#include "win
gdi
.h"
#include "win
def
.h"
#include "winbase.h"
#include "wingdi.h"
#include "winerror.h"
#include "wine/obj_oleview.h"
#include "wine/obj_cache.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
DEFAULT_DEBUG_CHANNEL
(
ole
)
;
/****************************************************************************
* PresentationDataHeader
...
...
dlls/ole32/storage.c
View file @
fc296da4
...
...
@@ -10,10 +10,14 @@
#include <assert.h>
#include <time.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include "windef.h"
#include "winerror.h"
#include "wine/winestring.h"
#include "wine/winbase16.h"
#include "wingdi.h"
#include "wtypes.h"
#include "file.h"
#include "ole.h"
#include "wine/obj_base.h"
...
...
@@ -23,8 +27,8 @@
#include "ldt.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
DECLARE_DEBUG_CHANNEL
(
relay
)
DEFAULT_DEBUG_CHANNEL
(
ole
)
;
DECLARE_DEBUG_CHANNEL
(
relay
)
;
struct
storage_header
{
BYTE
magic
[
8
];
/* 00: magic */
...
...
dlls/oleaut32/variant.c
View file @
fc296da4
...
...
@@ -22,17 +22,9 @@
#include "config.h"
#include "windef.h"
#include "oleauto.h"
#include "heap.h"
#include "debugtools.h"
#include "winerror.h"
#include "parsedt.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <time.h>
...
...
@@ -40,6 +32,15 @@ DEFAULT_DEBUG_CHANNEL(ole)
# include <float.h>
#endif
#include "windef.h"
#include "oleauto.h"
#include "heap.h"
#include "debugtools.h"
#include "winerror.h"
#include "parsedt.h"
DEFAULT_DEBUG_CHANNEL
(
ole
);
#ifndef FLT_MAX
# ifdef MAXFLOAT
# define FLT_MAX MAXFLOAT
...
...
dlls/olecli/olecli_main.c
View file @
fc296da4
...
...
@@ -6,11 +6,14 @@
/* At the moment, these are only empty stubs.
*/
#include "windef.h"
#include "wingdi.h"
#include "wtypes.h"
#include "ole.h"
#include "gdi.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
DEFAULT_DEBUG_CHANNEL
(
ole
)
;
extern
LONG
OLE_current_handle
;
...
...
dlls/olesvr/olesvr_main.c
View file @
fc296da4
...
...
@@ -7,10 +7,13 @@
/* At the moment, these are only empty stubs.
*/
#include "windef.h"
#include "wingdi.h"
#include "wtypes.h"
#include "ole.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
DEFAULT_DEBUG_CHANNEL
(
ole
)
;
LONG
OLE_current_handle
;
...
...
graphics/cache.c
View file @
fc296da4
...
...
@@ -6,6 +6,7 @@
*
*/
#include "windef.h"
#include "wingdi.h"
#include "cache.h"
...
...
graphics/escape.c
View file @
fc296da4
...
...
@@ -5,6 +5,7 @@
*/
#include <string.h>
#include "windef.h"
#include "wingdi.h"
#include "gdi.h"
#include "heap.h"
...
...
@@ -12,7 +13,7 @@
#include "dc.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
driver
)
DEFAULT_DEBUG_CHANNEL
(
driver
)
;
/***********************************************************************
* Escape16 [GDI.38]
...
...
graphics/ttydrv/text.c
View file @
fc296da4
...
...
@@ -6,13 +6,14 @@
#include "config.h"
#include "wine/wingdi16.h"
#include "windef.h"
#include "wingdi.h"
#include "dc.h"
#include "debugtools.h"
#include "gdi.h"
#include "ttydrv.h"
DEFAULT_DEBUG_CHANNEL
(
ttydrv
)
DEFAULT_DEBUG_CHANNEL
(
ttydrv
)
;
/***********************************************************************
* TTYDRV_DC_ExtTextOut
...
...
include/color.h
View file @
fc296da4
#ifndef __WINE_COLOR_H
#define __WINE_COLOR_H
#include "windef.h"
#include "wingdi.h"
#include "palette.h"
...
...
include/enhmetafiledrv.h
View file @
fc296da4
...
...
@@ -5,6 +5,7 @@
#ifndef __WINE_ENHMETAFILEDRV_H
#define __WINE_ENHMETAFILEDRV_H
#include "windef.h"
#include "wingdi.h"
#include "gdi.h"
...
...
include/metafiledrv.h
View file @
fc296da4
...
...
@@ -5,6 +5,7 @@
#ifndef __WINE_METAFILEDRV_H
#define __WINE_METAFILEDRV_H
#include "windef.h"
#include "wingdi.h"
#include "gdi.h"
...
...
include/ole.h
View file @
fc296da4
...
...
@@ -5,15 +5,6 @@
#ifndef __WINE_OLE_H
#define __WINE_OLE_H
#include "wingdi.h"
/* LOGPALETTE */
/* FIXME: we need to include wtypes.h mainly, it seems, because we need BSTR.
* Normally none of the APIs in ole.h depend on it. It is most likey that they should
* be moved to ole2.h (which includes objbase.h and thus wtypes.h) or some other
* OLE include
*/
#include "wtypes.h"
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
include/psdrv.h
View file @
fc296da4
...
...
@@ -6,6 +6,7 @@
*
* Copyright 1998 Huw D M Davies
*/
#include "windef.h"
#include "wingdi.h"
#include "font.h"
#include "pen.h"
...
...
include/win16drv.h
View file @
fc296da4
...
...
@@ -5,6 +5,7 @@
#ifndef __WINE_WIN16DRV_H
#define __WINE_WIN16DRV_H
#include "windef.h"
#include "wingdi.h"
#include "gdi.h"
...
...
include/wingdi.h
View file @
fc296da4
#ifndef __WINE_WINGDI_H
#define __WINE_WINGDI_H
#include "windef.h"
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
library/winestub.c
View file @
fc296da4
/* Sample winestub.c file for compiling programs with libwine.so. */
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "xmalloc.h"
...
...
misc/cdrom.c
View file @
fc296da4
...
...
@@ -7,6 +7,8 @@
* Copyright 2000 Andreas Mohr
*/
#include "config.h"
#include <errno.h>
#include <string.h>
#include <fcntl.h>
...
...
msdos/int2f.c
View file @
fc296da4
...
...
@@ -7,6 +7,8 @@
* (c) 1999 Eric Pouech
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
...
...
objects/linedda.c
View file @
fc296da4
...
...
@@ -5,6 +5,7 @@
*/
#include <stdlib.h>
#include "windef.h"
#include "wingdi.h"
#include "wine/wingdi16.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