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
ee517e86
Commit
ee517e86
authored
Feb 28, 1999
by
David Luyer
Committed by
Alexandre Julliard
Feb 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- fixed missing stdlib.h and string.h includes everywhere
- removed a couple of unneeded stdlib.h and stdio.h includes
parent
8feb3bc1
Hide whitespace changes
Inline
Side-by-side
Showing
35 changed files
with
37 additions
and
6 deletions
+37
-6
xterm.c
console/xterm.c
+1
-0
listbox.c
controls/listbox.c
+1
-0
dbg.y
debugger/dbg.y
+2
-0
registers.c
debugger/registers.c
+1
-0
d3ddevices.c
graphics/d3ddevices.c
+1
-0
d3dexecutebuffer.c
graphics/d3dexecutebuffer.c
+1
-0
d3dtexture.c
graphics/d3dtexture.c
+1
-0
escape.c
graphics/escape.c
+1
-1
font.c
graphics/win16drv/font.c
+1
-1
convert.c
loader/ne/convert.c
+1
-0
network.c
misc/network.c
+1
-0
port.c
misc/port.c
+1
-0
main.c
miscemu/main.c
+1
-0
audio.c
multimedia/audio.c
+1
-0
dplay.c
multimedia/dplay.c
+1
-0
init.c
multimedia/init.c
+1
-0
mciwave.c
multimedia/mciwave.c
+1
-0
mixer.c
multimedia/mixer.c
+1
-0
mmaux.c
multimedia/mmaux.c
+1
-0
brush.c
objects/brush.c
+1
-1
clipping.c
objects/clipping.c
+1
-0
pen.c
objects/pen.c
+1
-0
region.c
objects/region.c
+2
-0
text.c
objects/text.c
+1
-1
olefont.c
ole/olefont.c
+1
-1
oleobj.c
ole/oleobj.c
+1
-0
event.c
scheduler/event.c
+1
-0
k32obj.c
scheduler/k32obj.c
+1
-0
mutex.c
scheduler/mutex.c
+1
-0
semaphore.c
scheduler/semaphore.c
+1
-0
file.c
server/file.c
+1
-0
request.c
server/request.c
+1
-0
defwnd.c
windows/defwnd.c
+1
-1
msgbox.c
windows/msgbox.c
+1
-0
monitor.c
windows/x11drv/monitor.c
+1
-0
No files found.
console/xterm.c
View file @
ee517e86
...
...
@@ -8,6 +8,7 @@
It does not currently support changing the title bar.
*/
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <sys/ioctl.h>
...
...
controls/listbox.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <string.h>
#include <stdlib.h>
#include "wine/winuser16.h"
#include "winuser.h"
#include "winerror.h"
...
...
debugger/dbg.y
View file @
ee517e86
...
...
@@ -10,6 +10,8 @@
#include "x11drv.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <sys/stat.h>
#include <unistd.h>
...
...
debugger/registers.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <stdio.h>
#include <string.h>
#include "selectors.h"
#include "debugger.h"
...
...
graphics/d3ddevices.c
View file @
ee517e86
...
...
@@ -4,6 +4,7 @@
This files contains all the D3D devices that Wine supports. For the moment
only the 'OpenGL' target is supported. */
#include <string.h>
#include "config.h"
#include "wintypes.h"
#include "winerror.h"
...
...
graphics/d3dexecutebuffer.c
View file @
ee517e86
...
...
@@ -4,6 +4,7 @@
This files contains the implementation of Direct3DExecuteBuffer. */
#include <string.h>
#include "config.h"
#include "wintypes.h"
#include "winerror.h"
...
...
graphics/d3dtexture.c
View file @
ee517e86
...
...
@@ -4,6 +4,7 @@
This files contains the implementation of interface Direct3DTexture2. */
#include <string.h>
#include "config.h"
#include "wintypes.h"
#include "winerror.h"
...
...
graphics/escape.c
View file @
ee517e86
...
...
@@ -4,7 +4,7 @@
* Copyright 1994 Bob Amstadt
*/
#include <st
dio
.h>
#include <st
ring
.h>
#include "wingdi.h"
#include "gdi.h"
#include "heap.h"
...
...
graphics/win16drv/font.c
View file @
ee517e86
...
...
@@ -5,7 +5,7 @@
* 1998 Huw Davies
*/
#include <st
dio
.h>
#include <st
ring
.h>
#include "wine/winbase16.h"
#include "win16drv.h"
#include "module.h"
...
...
loader/ne/convert.c
View file @
ee517e86
...
...
@@ -4,6 +4,7 @@
* Copyright 1998 Ulrich Weigand
*/
#include <string.h>
#include "wine/winuser16.h"
#include "module.h"
#include "debug.h"
...
...
misc/network.c
View file @
ee517e86
...
...
@@ -7,6 +7,7 @@
*/
#include <ctype.h>
#include <string.h>
#include <sys/types.h>
#include <pwd.h>
#include <unistd.h>
...
...
misc/port.c
View file @
ee517e86
...
...
@@ -6,6 +6,7 @@
#include "config.h"
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
...
...
miscemu/main.c
View file @
ee517e86
...
...
@@ -3,6 +3,7 @@
*
*/
#include <stdlib.h>
#include <assert.h>
#include "wine/winbase16.h"
#include "callback.h"
...
...
multimedia/audio.c
View file @
ee517e86
...
...
@@ -15,6 +15,7 @@
#define DEBUG_MCIWAVE
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
...
...
multimedia/dplay.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
* <presently under construction - contact hunnise@nortelnetworks.com>
*
*/
#include <string.h>
#include "winerror.h"
#include "winnt.h"
#include "winreg.h"
...
...
multimedia/init.c
View file @
ee517e86
...
...
@@ -7,6 +7,7 @@
*/
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include "winbase.h"
...
...
multimedia/mciwave.c
View file @
ee517e86
...
...
@@ -15,6 +15,7 @@
#define DEBUG_MCIWAVE
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
...
...
multimedia/mixer.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
...
...
multimedia/mmaux.c
View file @
ee517e86
...
...
@@ -7,6 +7,7 @@
#define EMULATE_SB16
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
...
...
objects/brush.c
View file @
ee517e86
...
...
@@ -4,7 +4,7 @@
* Copyright 1993, 1994 Alexandre Julliard
*/
#include <st
dlib
.h>
#include <st
ring
.h>
#include "winbase.h"
#include "brush.h"
#include "bitmap.h"
...
...
objects/clipping.c
View file @
ee517e86
...
...
@@ -4,6 +4,7 @@
* Copyright 1993 Alexandre Julliard
*/
#include <stdlib.h>
#include "dc.h"
#include "metafile.h"
#include "region.h"
...
...
objects/pen.c
View file @
ee517e86
...
...
@@ -4,6 +4,7 @@
* Copyright 1993 Alexandre Julliard
*/
#include <string.h>
#include "pen.h"
#include "debug.h"
...
...
objects/region.c
View file @
ee517e86
...
...
@@ -80,6 +80,8 @@ SOFTWARE.
* the y-x-banding that's so nice to have...
*/
#include <stdlib.h>
#include <string.h>
#include "region.h"
#include "winuser.h"
#include "debug.h"
...
...
objects/text.c
View file @
ee517e86
...
...
@@ -5,7 +5,7 @@
*
*/
#include <st
dlib
.h>
#include <st
ring
.h>
#include "wingdi.h"
#include "winuser.h"
#include "wine/winuser16.h"
...
...
ole/olefont.c
View file @
ee517e86
...
...
@@ -7,7 +7,7 @@
* Copyright 1999 Francis Beaudet
*/
#include <assert.h>
#include <string.h>
#include "windows.h"
#include "winerror.h"
#include "oleauto.h"
...
...
ole/oleobj.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <string.h>
#include "ole.h"
#include "ole2.h"
#include "winerror.h"
...
...
scheduler/event.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <assert.h>
#include <string.h>
#include "winerror.h"
#include "k32obj.h"
#include "process.h"
...
...
scheduler/k32obj.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <assert.h>
#include <string.h>
#include "winerror.h"
#include "k32obj.h"
#include "heap.h"
...
...
scheduler/mutex.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <assert.h>
#include <string.h>
#include "winerror.h"
#include "k32obj.h"
#include "process.h"
...
...
scheduler/semaphore.c
View file @
ee517e86
...
...
@@ -5,6 +5,7 @@
*/
#include <assert.h>
#include <string.h>
#include "winerror.h"
#include "k32obj.h"
#include "process.h"
...
...
server/file.c
View file @
ee517e86
...
...
@@ -7,6 +7,7 @@
#include <assert.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/errno.h>
...
...
server/request.c
View file @
ee517e86
...
...
@@ -7,6 +7,7 @@
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/uio.h>
...
...
windows/defwnd.c
View file @
ee517e86
...
...
@@ -5,7 +5,7 @@
* 1995 Alex Korobka
*/
#include <st
dlib
.h>
#include <st
ring
.h>
#include "win.h"
#include "user.h"
#include "heap.h"
...
...
windows/msgbox.c
View file @
ee517e86
...
...
@@ -4,6 +4,7 @@
* Copyright 1995 Bernd Schmidt
*/
#include <string.h>
#include "wine/winuser16.h"
#include "dlgs.h"
#include "heap.h"
...
...
windows/x11drv/monitor.c
View file @
ee517e86
...
...
@@ -9,6 +9,7 @@
#ifndef X_DISPLAY_MISSING
#include <stdlib.h>
#include <X11/cursorfont.h>
#include "ts_xlib.h"
#include "ts_xutil.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