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
cef5961d
Commit
cef5961d
authored
Jan 03, 2003
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Jan 03, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eliminate lots of __WINE__ conditionals from the headers.
parent
5f87d778
Hide whitespace changes
Inline
Side-by-side
Showing
49 changed files
with
44 additions
and
43 deletions
+44
-43
avicap32_main.c
dlls/avicap32/avicap32_main.c
+1
-0
acmstream.c
dlls/avifil32/acmstream.c
+1
-0
api.c
dlls/avifil32/api.c
+1
-0
avifile.c
dlls/avifil32/avifile.c
+1
-0
extrachunk.c
dlls/avifil32/extrachunk.c
+1
-0
factory.c
dlls/avifil32/factory.c
+1
-0
getframe.c
dlls/avifil32/getframe.c
+1
-0
icmstream.c
dlls/avifil32/icmstream.c
+1
-0
wavfile.c
dlls/avifil32/wavfile.c
+1
-0
comcat_private.h
dlls/comcat/comcat_private.h
+1
-0
animate.c
dlls/comctl32/animate.c
+1
-0
cdlg.h
dlls/commdlg/cdlg.h
+1
-0
filedlgbrowser.h
dlls/commdlg/filedlgbrowser.h
+1
-0
Makefile.in
dlls/dplayx/Makefile.in
+1
-0
mciwnd.c
dlls/msvideo/mciwnd.c
+1
-0
msrle_private.h
dlls/msvideo/msrle32/msrle_private.h
+1
-0
msvideo16.c
dlls/msvideo/msvideo16.c
+1
-0
msvideo_private.h
dlls/msvideo/msvideo_private.h
+1
-0
Makefile.in
dlls/ole32/Makefile.in
+1
-1
compositemoniker.c
dlls/ole32/compositemoniker.c
+3
-2
Makefile.in
dlls/oleaut32/Makefile.in
+1
-1
oledlg_main.c
dlls/oledlg/oledlg_main.c
+1
-3
olepro32stubs.c
dlls/olepro32/olepro32stubs.c
+1
-0
Makefile.in
dlls/rpcrt4/Makefile.in
+1
-1
shdocvw.h
dlls/shdocvw/shdocvw.h
+1
-0
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+1
-1
Makefile.in
dlls/shell32/Makefile.in
+1
-1
ordinal.c
dlls/shlwapi/ordinal.c
+1
-0
string.c
dlls/shlwapi/string.c
+1
-0
umon.c
dlls/urlmon/umon.c
+1
-0
private_mciavi.h
dlls/winmm/mciavi/private_mciavi.h
+1
-0
event.c
dlls/x11drv/event.c
+1
-0
comcat.h
include/comcat.h
+0
-2
docobj.h
include/docobj.h
+0
-2
mapicode.h
include/mapicode.h
+0
-2
mapidefs.h
include/mapidefs.h
+0
-2
mediaobj.h
include/mediaobj.h
+0
-2
oaidl.h
include/oaidl.h
+0
-2
ocidl.h
include/ocidl.h
+0
-4
ole2.h
include/ole2.h
+0
-3
oleidl.h
include/oleidl.h
+0
-3
servprov.h
include/servprov.h
+0
-2
urlmon.h
include/urlmon.h
+0
-2
wingdi.h
include/wingdi.h
+3
-3
winnls.h
include/winnls.h
+2
-2
winuser.h
include/winuser.h
+2
-2
dx8guid.c
ole/dx8guid.c
+1
-0
dxguid.c
ole/dxguid.c
+1
-0
uuid.c
ole/uuid.c
+1
-0
No files found.
dlls/avicap32/avicap32_main.c
View file @
cef5961d
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "vfw.h"
#include "winternl.h"
#include "wine/debug.h"
...
...
dlls/avifil32/acmstream.c
View file @
cef5961d
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "winbase.h"
...
...
dlls/avifil32/api.c
View file @
cef5961d
...
...
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "winbase.h"
...
...
dlls/avifil32/avifile.c
View file @
cef5961d
...
...
@@ -26,6 +26,7 @@
* - IAVIStream_fnSetInfo: a stub.
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "winbase.h"
...
...
dlls/avifil32/extrachunk.c
View file @
cef5961d
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "extrachunk.h"
...
...
dlls/avifil32/factory.c
View file @
cef5961d
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "winbase.h"
...
...
dlls/avifil32/getframe.c
View file @
cef5961d
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "winbase.h"
...
...
dlls/avifil32/icmstream.c
View file @
cef5961d
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "winbase.h"
...
...
dlls/avifil32/wavfile.c
View file @
cef5961d
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <assert.h>
#include "winbase.h"
...
...
dlls/comcat/comcat_private.h
View file @
cef5961d
...
...
@@ -18,6 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/comctl32/animate.c
View file @
cef5961d
...
...
@@ -28,6 +28,7 @@
* - concurrent access to infoPtr
*/
#define COM_NO_WINDOWS_H
#include <string.h>
#include "winbase.h"
#include "commctrl.h"
...
...
dlls/commdlg/cdlg.h
View file @
cef5961d
...
...
@@ -21,6 +21,7 @@
#ifndef _WINE_DLL_CDLG_H
#define _WINE_DLL_CDLG_H
#define COM_NO_WINDOWS_H
#include "dlgs.h"
#include "wine/windef16.h"
#include "wownt32.h"
...
...
dlls/commdlg/filedlgbrowser.h
View file @
cef5961d
...
...
@@ -22,6 +22,7 @@
#ifndef SHBROWSER_H
#define SHBROWSER_H
#define COM_NO_WINDOWS_H
#include "shlobj.h"
#include "winbase.h"
#include "objbase.h"
...
...
dlls/dplayx/Makefile.in
View file @
cef5961d
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/msvideo/mciwnd.c
View file @
cef5961d
...
...
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <stdio.h>
#include <string.h>
...
...
dlls/msvideo/msrle32/msrle_private.h
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
#ifndef __MSRLE32_PRIVATE_H
#define __MSRLE32_PRIVATE_H
#define COM_NO_WINDOWS_H
#include "winbase.h"
#include "mmsystem.h"
#include "vfw.h"
...
...
dlls/msvideo/msvideo16.c
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <stdio.h>
#include <string.h>
...
...
dlls/msvideo/msvideo_private.h
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
#ifndef __WINE_MSVIDEO_PRIVATE_H
#define __WINE_MSVIDEO_PRIVATE_H
#define COM_NO_WINDOWS_H
#include "winbase.h"
#include "windef.h"
#include "vfw.h"
...
...
dlls/ole32/Makefile.in
View file @
cef5961d
EXTRADEFS
=
-D_OLE32_
EXTRADEFS
=
-D_OLE32_
-DCOM_NO_WINDOWS_H
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/ole32/compositemoniker.c
View file @
cef5961d
/*
**************************************************************************************
/*
* CompositeMonikers implementation
*
* Copyright 1999 Noomen Hamza
...
...
@@ -16,7 +16,8 @@
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
***************************************************************************************/
*/
#include <assert.h>
#include <string.h>
#include "winbase.h"
...
...
dlls/oleaut32/Makefile.in
View file @
cef5961d
EXTRADEFS
=
-D_OLEAUT32_
EXTRADEFS
=
-D_OLEAUT32_
-DCOM_NO_WINDOWS_H
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/oledlg/oledlg_main.c
View file @
cef5961d
...
...
@@ -18,6 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
...
...
@@ -289,6 +290,3 @@ UINT WINAPI OleUIChangeSourceW(
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
OLEUI_FALSE
;
}
dlls/olepro32/olepro32stubs.c
View file @
cef5961d
...
...
@@ -20,6 +20,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "wine/debug.h"
#include "winbase.h"
#include "ole2.h"
...
...
dlls/rpcrt4/Makefile.in
View file @
cef5961d
EXTRADEFS
=
-D_RPCRT4_
EXTRADEFS
=
-D_RPCRT4_
-DCOM_NO_WINDOWS_H
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/shdocvw/shdocvw.h
View file @
cef5961d
...
...
@@ -21,6 +21,7 @@
#ifndef __WINE_SHDOCVW_H
#define __WINE_SHDOCVW_H
#define COM_NO_WINDOWS_H
/* FIXME: Is there a better way to deal with all these includes? */
#include "wingdi.h"
#include "winbase.h"
...
...
dlls/shdocvw/shdocvw_main.c
View file @
cef5961d
...
...
@@ -18,6 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <string.h>
#include "winreg.h"
#include "initguid.h"
...
...
@@ -94,4 +95,3 @@ HRESULT WINAPI SHDOCVW_DllUnregisterServer()
FIXME
(
"(), stub!
\n
"
);
return
S_OK
;
}
dlls/shell32/Makefile.in
View file @
cef5961d
EXTRADEFS
=
-D_SHELL32_
EXTRADEFS
=
-D_SHELL32_
-DCOM_NO_WINDOWS_H
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/shlwapi/ordinal.c
View file @
cef5961d
...
...
@@ -20,6 +20,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "config.h"
#include "wine/port.h"
...
...
dlls/shlwapi/string.c
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "config.h"
#include "wine/port.h"
...
...
dlls/urlmon/umon.c
View file @
cef5961d
...
...
@@ -23,6 +23,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include <stdio.h>
#include "windef.h"
...
...
dlls/winmm/mciavi/private_mciavi.h
View file @
cef5961d
...
...
@@ -23,6 +23,7 @@
#ifndef __WINE_PRIVATE_MCIAVI_H
#define __WINE_PRIVATE_MCIAVI_H
#define COM_NO_WINDOWS_H
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
dlls/x11drv/event.c
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "config.h"
#include <X11/Xatom.h>
...
...
include/comcat.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __WINE_COMCAT_H
#define __WINE_COMCAT_H
...
...
include/docobj.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __WINE_DOCOBJ_H
#define __WINE_DOCOBJ_H
...
...
include/mapicode.h
View file @
cef5961d
...
...
@@ -21,9 +21,7 @@
#ifndef MAPICODE_H
#define MAPICODE_H
#ifndef __WINE__
#include "winerror.h"
#endif
#define MAKE_MAPI_SCODE(sev,fac,code) \
( (((ULONG)(sev)<<31) | ((ULONG)(fac)<<16) | ((ULONG)(code))) )
...
...
include/mapidefs.h
View file @
cef5961d
...
...
@@ -20,13 +20,11 @@
#define __WINE_MAPIDEFS_H
#include "windef.h"
#ifndef __WINE__
#include "windows.h"
#include "winerror.h"
#ifndef _OBJBASE_H_
#include "objbase.h"
#endif
#endif
/* Some types */
...
...
include/mediaobj.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __mediaobj_h__
#define __mediaobj_h__
...
...
include/oaidl.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __WINE_OAIDL_H
#define __WINE_OAIDL_H
...
...
include/ocidl.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __WINE_OCIDL_H
#define __WINE_OCIDL_H
...
...
@@ -46,5 +44,3 @@
#include "wine/obj_oleundo.h"
#endif
/* __WINE_OCIDL_H */
include/ole2.h
View file @
cef5961d
...
...
@@ -27,9 +27,7 @@
#define __WINE_INCLUDE_OLEIDL
#include "oleidl.h"
#undef __WINE_INCLUDE_OLEIDL
#ifndef __WINE__
#include "oleauto.h"
#endif
struct
tagMSG
;
#ifdef __cplusplus
...
...
@@ -150,4 +148,3 @@ HRESULT WINAPI OleSetAutoConvert( REFCLSID clsidOld, REFCLSID clsidNew );
#endif
/* defined(__cplusplus) */
#endif
/* __WINE_OLE2_H */
include/oleidl.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __WINE_OLEIDL_H
#define __WINE_OLEIDL_H
...
...
@@ -40,4 +38,3 @@
#include "wine/obj_dragdrop.h"
#endif
/* __WINE_OLEIDL_H */
include/servprov.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __WINE_SERVPROV_H
#define __WINE_SERVPROV_H
...
...
include/urlmon.h
View file @
cef5961d
...
...
@@ -16,14 +16,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE__
#include "rpc.h"
#include "rpcndr.h"
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif
#endif
#ifndef __WINE_URLMON_H
#define __WINE_URLMON_H
...
...
include/wingdi.h
View file @
cef5961d
...
...
@@ -1166,7 +1166,7 @@ typedef struct
DECL_WINELIB_TYPE_AW
(
NEWTEXTMETRICEX
)
#if defined(STRICT)
|| defined(__WINE__)
#if defined(STRICT)
#if !defined(NOTEXTMETRIC)
typedef
int
(
CALLBACK
*
OLDFONTENUMPROCA
)(
const
LOGFONTA
*
,
const
TEXTMETRICA
*
,
DWORD
,
LPARAM
);
...
...
@@ -1184,7 +1184,7 @@ DECL_WINELIB_TYPE_AW(FONTENUMPROC)
typedef
INT
(
CALLBACK
*
GOBJENUMPROC
)(
LPVOID
,
LPARAM
);
typedef
VOID
(
CALLBACK
*
LINEDDAPROC
)(
INT
,
INT
,
LPARAM
);
#else
/* defined(STRICT)
|| defined(__WINE__)
*/
#else
/* defined(STRICT) */
typedef
FARPROC
OLDFONTENUMPROC
;
...
...
@@ -1195,7 +1195,7 @@ DECL_WINELIB_TYPE_AW(FONTENUMPROC)
typedef
FARPROC
GOBJENUMPROC
;
typedef
FARPROC
LINEDDAPROC
;
#endif
/* defined(STRICT)
|| defined(__WINE__)
*/
#endif
/* defined(STRICT) */
/* tmPitchAndFamily bits */
#define TMPF_FIXED_PITCH 1
/* means variable pitch */
...
...
include/winnls.h
View file @
cef5961d
...
...
@@ -425,7 +425,7 @@ DECL_WINELIB_TYPE_AW(LPCURRENCYFMT)
/* Define a bunch of callback types */
#if defined(STRICT)
|| defined(__WINE__)
#if defined(STRICT)
typedef
BOOL
(
CALLBACK
*
CALINFO_ENUMPROCA
)(
LPSTR
);
typedef
BOOL
(
CALLBACK
*
CALINFO_ENUMPROCW
)(
LPWSTR
);
typedef
BOOL
(
CALLBACK
*
CALINFO_ENUMPROCEXA
)(
LPSTR
,
CALID
);
...
...
@@ -455,7 +455,7 @@ typedef FARPROC LOCALE_ENUMPROCA;
typedef
FARPROC
LOCALE_ENUMPROCW
;
typedef
FARPROC
TIMEFMT_ENUMPROCA
;
typedef
FARPROC
TIMEFMT_ENUMPROCW
;
#endif
/* STRICT
|| __WINE__
*/
#endif
/* STRICT */
DECL_WINELIB_TYPE_AW
(
CALINFO_ENUMPROC
)
DECL_WINELIB_TYPE_AW
(
CALINFO_ENUMPROCEX
)
...
...
include/winuser.h
View file @
cef5961d
...
...
@@ -29,7 +29,7 @@ extern "C" {
/* Define a bunch of callback types */
#if defined(STRICT)
|| defined(__WINE__)
#if defined(STRICT)
typedef
INT_PTR
(
CALLBACK
*
DLGPROC
)(
HWND
,
UINT
,
WPARAM
,
LPARAM
);
typedef
BOOL
(
CALLBACK
*
DRAWSTATEPROC
)(
HDC
,
LPARAM
,
WPARAM
,
int
,
int
);
typedef
INT
(
CALLBACK
*
EDITWORDBREAKPROCA
)(
LPSTR
,
INT
,
INT
,
INT
);
...
...
@@ -65,7 +65,7 @@ typedef FARPROC SENDASYNCPROC;
typedef
FARPROC
TIMERPROC
;
typedef
FARPROC
WINEVENTPROC
;
typedef
FARPROC
WNDENUMPROC
;
#endif
/* STRICT
|| __WINE__
*/
#endif
/* STRICT */
typedef
NAMEENUMPROCA
WINSTAENUMPROCA
;
typedef
NAMEENUMPROCA
DESKTOPENUMPROCA
;
...
...
ole/dx8guid.c
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
ole/dxguid.c
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
ole/uuid.c
View file @
cef5961d
...
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define COM_NO_WINDOWS_H
#include "initguid.h"
/* GUIDs defined in uuids.lib */
...
...
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