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
1ed55775
Commit
1ed55775
authored
Nov 30, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Nov 30, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't include windows.h internally.
parent
c3350c53
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
60 additions
and
17 deletions
+60
-17
clipboard.c
dlls/ole32/clipboard.c
+1
-0
filemoniker.c
dlls/ole32/filemoniker.c
+1
-0
connpt.c
dlls/oleaut32/connpt.c
+2
-0
ole2disp.c
dlls/oleaut32/ole2disp.c
+1
-0
oleaut.c
dlls/oleaut32/oleaut.c
+1
-0
olefont.c
dlls/oleaut32/olefont.c
+2
-0
olepicture.c
dlls/oleaut32/olepicture.c
+4
-0
stubs.c
dlls/oleaut32/stubs.c
+3
-0
charlist.c
dlls/richedit/charlist.c
+3
-1
reader.c
dlls/richedit/reader.c
+3
-1
richedit.c
dlls/richedit/richedit.c
+1
-1
rtf.h
dlls/richedit/rtf.h
+6
-2
umon.c
dlls/urlmon/umon.c
+1
-1
ftp.c
dlls/wininet/ftp.c
+6
-2
http.c
dlls/wininet/http.c
+5
-2
internet.c
dlls/wininet/internet.c
+2
-1
utility.c
dlls/wininet/utility.c
+4
-2
ocidl.h
include/ocidl.h
+2
-0
rpc.h
include/rpc.h
+4
-0
unknwn.h
include/unknwn.h
+3
-3
windows.h
include/windows.h
+4
-0
int11.c
msdos/int11.c
+1
-1
No files found.
dlls/ole32/clipboard.c
View file @
1ed55775
...
@@ -51,6 +51,7 @@
...
@@ -51,6 +51,7 @@
#include "winuser.h"
#include "winuser.h"
#include "winbase.h"
#include "winbase.h"
#include "winerror.h"
#include "winerror.h"
#include "winnls.h"
#include "ole2.h"
#include "ole2.h"
#include "debugtools.h"
#include "debugtools.h"
#include "olestd.h"
#include "olestd.h"
...
...
dlls/ole32/filemoniker.c
View file @
1ed55775
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
#include <assert.h>
#include <assert.h>
#include "winbase.h"
#include "winbase.h"
#include "winerror.h"
#include "winerror.h"
#include "winnls.h"
#include "wine/unicode.h"
#include "wine/unicode.h"
#include "debugtools.h"
#include "debugtools.h"
#include "objbase.h"
#include "objbase.h"
...
...
dlls/oleaut32/connpt.c
View file @
1ed55775
...
@@ -11,6 +11,8 @@
...
@@ -11,6 +11,8 @@
#include "winerror.h"
#include "winerror.h"
#include "winbase.h"
#include "winbase.h"
#include "wingdi.h"
#include "wingdi.h"
#include "winuser.h"
#include "ole2.h"
#include "olectl.h"
#include "olectl.h"
#include "wine/obj_base.h"
#include "wine/obj_base.h"
#include "wine/obj_connection.h"
#include "wine/obj_connection.h"
...
...
dlls/oleaut32/ole2disp.c
View file @
1ed55775
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
#include "winuser.h"
#include "winuser.h"
#include "winerror.h"
#include "winerror.h"
#include "wine/windef16.h"
#include "wine/windef16.h"
#include "ole2.h"
#include "olectl.h"
#include "olectl.h"
#include "oleauto.h"
#include "oleauto.h"
#include "heap.h"
#include "heap.h"
...
...
dlls/oleaut32/oleaut.c
View file @
1ed55775
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
#include "initguid.h"
#include "initguid.h"
#include "oleauto.h"
#include "oleauto.h"
#include "ole2.h"
#include "olectl.h"
#include "olectl.h"
DEFAULT_DEBUG_CHANNEL
(
ole
);
DEFAULT_DEBUG_CHANNEL
(
ole
);
...
...
dlls/oleaut32/olefont.c
View file @
1ed55775
...
@@ -11,10 +11,12 @@
...
@@ -11,10 +11,12 @@
#include "winerror.h"
#include "winerror.h"
#include "winbase.h"
#include "winbase.h"
#include "wingdi.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/unicode.h"
#include "wine/unicode.h"
#include "oleauto.h"
/* for SysAllocString(....) */
#include "oleauto.h"
/* for SysAllocString(....) */
#include "wine/obj_olefont.h"
#include "wine/obj_olefont.h"
#include "wine/obj_storage.h"
#include "wine/obj_storage.h"
#include "ole2.h"
#include "olectl.h"
#include "olectl.h"
#include "debugtools.h"
#include "debugtools.h"
#include "heap.h"
#include "heap.h"
...
...
dlls/oleaut32/olepicture.c
View file @
1ed55775
...
@@ -23,6 +23,10 @@
...
@@ -23,6 +23,10 @@
*/
*/
#include "winerror.h"
#include "winerror.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "ole2.h"
#include "olectl.h"
#include "olectl.h"
#include "wine/obj_picture.h"
#include "wine/obj_picture.h"
#include "debugtools.h"
#include "debugtools.h"
...
...
dlls/oleaut32/stubs.c
View file @
1ed55775
...
@@ -7,7 +7,10 @@
...
@@ -7,7 +7,10 @@
*/
*/
#include "windef.h"
#include "windef.h"
#include "wingdi.h"
#include "winuser.h"
#include "debugtools.h"
#include "debugtools.h"
#include "ole2.h"
#include "olectl.h"
#include "olectl.h"
#include "heap.h"
#include "heap.h"
...
...
dlls/richedit/charlist.c
View file @
1ed55775
...
@@ -11,8 +11,10 @@
...
@@ -11,8 +11,10 @@
#include <stddef.h>
#include <stddef.h>
#include <ctype.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdlib.h>
#include "charlist.h"
#include "charlist.h"
#include "windows.h"
#include "windef.h"
#include "winbase.h"
extern
HANDLE
RICHED32_hHeap
;
extern
HANDLE
RICHED32_hHeap
;
...
...
dlls/richedit/reader.c
View file @
1ed55775
...
@@ -72,8 +72,10 @@
...
@@ -72,8 +72,10 @@
#include "text_map.h"
#include "text_map.h"
#include <stdlib.h>
#include <stdlib.h>
#include "charlist.h"
#include "charlist.h"
#include "windows.h"
#include "windef.h"
#include "winbase.h"
#include "debugtools.h"
#include "debugtools.h"
extern
HANDLE
RICHED32_hHeap
;
extern
HANDLE
RICHED32_hHeap
;
...
...
dlls/richedit/richedit.c
View file @
1ed55775
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*
*
*/
*/
#include "wind
ows
.h"
#include "wind
ef
.h"
#include "winbase.h"
#include "winbase.h"
#include "heap.h"
#include "heap.h"
#include "debugtools.h"
#include "debugtools.h"
...
...
dlls/richedit/rtf.h
View file @
1ed55775
...
@@ -2,8 +2,12 @@
...
@@ -2,8 +2,12 @@
#define _RTF
#define _RTF
#include <stdio.h>
#include <stdio.h>
#include <windows.h>
#include <richedit.h>
#include "windef.h"
#include "wingdi.h"
#include "winuser.h"
#include "richedit.h"
void
RTFSetEditStream
(
EDITSTREAM
*
es
);
void
RTFSetEditStream
(
EDITSTREAM
*
es
);
...
...
dlls/urlmon/umon.c
View file @
1ed55775
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*/
*/
#include "wind
ows
.h"
#include "wind
ef
.h"
#include "objbase.h"
#include "objbase.h"
#include "debugtools.h"
#include "debugtools.h"
...
...
dlls/wininet/ftp.c
View file @
1ed55775
...
@@ -10,7 +10,9 @@
...
@@ -10,7 +10,9 @@
#include "config.h"
#include "config.h"
#include <errno.h>
#include <errno.h>
#include <netdb.h>
#ifdef HAVE_NETDB_H
# include <netdb.h>
#endif
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
...
@@ -21,7 +23,9 @@
...
@@ -21,7 +23,9 @@
#include <sys/stat.h>
#include <sys/stat.h>
#include <unistd.h>
#include <unistd.h>
#include <netinet/in_systm.h>
#include <netinet/in_systm.h>
#include <netinet/in.h>
#ifdef HAVE_NETINET_IH_H
# include <netinet/in.h>
#endif
#include <netinet/ip.h>
#include <netinet/ip.h>
#include "winbase.h"
#include "winbase.h"
...
...
dlls/wininet/http.c
View file @
1ed55775
...
@@ -9,7 +9,8 @@
...
@@ -9,7 +9,8 @@
#include "config.h"
#include "config.h"
#include "windows.h"
#include "windef.h"
#include "winbase.h"
#include "wininet.h"
#include "wininet.h"
#include "debugtools.h"
#include "debugtools.h"
#include "winerror.h"
#include "winerror.h"
...
@@ -19,7 +20,9 @@
...
@@ -19,7 +20,9 @@
#ifdef HAVE_SYS_SOCKET_H
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
# include <sys/socket.h>
#endif
#endif
#include <netdb.h>
#ifdef HAVE_NETDB_H
# include <netdb.h>
#endif
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <unistd.h>
#include <unistd.h>
...
...
dlls/wininet/internet.c
View file @
1ed55775
...
@@ -19,7 +19,8 @@
...
@@ -19,7 +19,8 @@
#include <ctype.h>
#include <ctype.h>
#include <unistd.h>
#include <unistd.h>
#include "windows.h"
#include "windef.h"
#include "winbase.h"
#include "wininet.h"
#include "wininet.h"
#include "debugtools.h"
#include "debugtools.h"
#include "winerror.h"
#include "winerror.h"
...
...
dlls/wininet/utility.c
View file @
1ed55775
...
@@ -7,12 +7,14 @@
...
@@ -7,12 +7,14 @@
*
*
*/
*/
#include "config.h"
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <time.h>
#include <time.h>
#include "
config
.h"
#include "
windef
.h"
#include "win
dows
.h"
#include "win
base
.h"
#include "wininet.h"
#include "wininet.h"
#include "winerror.h"
#include "winerror.h"
#include "winsock.h"
#include "winsock.h"
...
...
include/ocidl.h
View file @
1ed55775
#ifndef __WINE_OCIDL_H
#ifndef __WINE_OCIDL_H
#define __WINE_OCIDL_H
#define __WINE_OCIDL_H
#if !defined(COM_NO_WINDOWS_H) && !defined(__WINE__)
#include "windows.h"
#include "windows.h"
#include "ole2.h"
#include "ole2.h"
#endif
#include "wine/obj_base.h"
#include "wine/obj_base.h"
...
...
include/rpc.h
View file @
1ed55775
...
@@ -5,6 +5,10 @@
...
@@ -5,6 +5,10 @@
#ifndef __WINE_RPC_H
#ifndef __WINE_RPC_H
#define __WINE_RPC_H
#define __WINE_RPC_H
#if !defined(RPC_NO_WINDOWS_H) && !defined(__WINE__)
#include "windows.h"
#endif
#define __RPC_FAR
#define __RPC_FAR
#define __RPC_API WINAPI
#define __RPC_API WINAPI
#define __RPC_USER WINAPI
#define __RPC_USER WINAPI
...
...
include/unknwn.h
View file @
1ed55775
...
@@ -4,11 +4,11 @@
...
@@ -4,11 +4,11 @@
#include "rpc.h"
#include "rpc.h"
#include "rpcndr.h"
#include "rpcndr.h"
#include "wine/obj_base.h"
#if !defined(COM_NO_WINDOWS_H) && !defined(__WINE__)
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "windows.h"
#include "ole2.h"
#include "ole2.h"
#endif
#endif
#include "wine/obj_base.h"
#endif
/* __WINE_UNKNWN_H */
#endif
/* __WINE_UNKNWN_H */
include/windows.h
View file @
1ed55775
#ifndef __WINE_WINDOWS_H
#ifndef __WINE_WINDOWS_H
#define __WINE_WINDOWS_H
#define __WINE_WINDOWS_H
#ifdef __WINE__
#error Wine should not include windows.h internally
#endif
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
#endif
#endif
...
...
msdos/int11.c
View file @
1ed55775
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
#include <stdlib.h>
#include <stdlib.h>
#include "config.h"
#include "config.h"
#include "wind
ows
.h"
#include "wind
ef
.h"
#include "miscemu.h"
#include "miscemu.h"
#include "msdos.h"
#include "msdos.h"
#include "drive.h"
#include "drive.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