Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
44a18222
Commit
44a18222
authored
Dec 19, 2000
by
François Gouget
Committed by
Alexandre Julliard
Dec 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winuser.h now requires that we include winbase.h first.
parent
ef14b8a9
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
55 additions
and
2 deletions
+55
-2
icontitle.c
controls/icontitle.c
+2
-0
filedlgbrowser.c
dlls/commdlg/filedlgbrowser.c
+1
-0
dsound_main.c
dlls/dsound/dsound_main.c
+1
-0
drawdib.c
dlls/msvideo/drawdib.c
+1
-1
clipboard.c
dlls/ole32/clipboard.c
+1
-1
ole2nls.c
dlls/ole32/ole2nls.c
+2
-0
ole2disp.c
dlls/oleaut32/ole2disp.c
+2
-0
oleaut.c
dlls/oleaut32/oleaut.c
+2
-0
stubs.c
dlls/oleaut32/stubs.c
+1
-0
rtf.h
dlls/richedit/rtf.h
+1
-0
user_main.c
dlls/user/user_main.c
+1
-0
joystick.c
dlls/winmm/joystick/joystick.c
+2
-0
mcianim.c
dlls/winmm/mcianim/mcianim.c
+1
-0
mciavi.c
dlls/winmm/mciavi/mciavi.c
+2
-0
mcicda.c
dlls/winmm/mcicda/mcicda.c
+2
-0
mcimidi.c
dlls/winmm/mciseq/mcimidi.c
+2
-0
mciwave.c
dlls/winmm/mciwave/mciwave.c
+1
-0
midimap.c
dlls/winmm/midimap/midimap.c
+1
-0
time.c
dlls/winmm/time.c
+2
-0
wavemap.c
dlls/winmm/wavemap/wavemap.c
+1
-0
midi.c
dlls/winmm/wineoss/midi.c
+2
-0
oss.c
dlls/winmm/wineoss/oss.c
+1
-0
win.h
include/win.h
+1
-0
winpos.h
include/winpos.h
+1
-0
tweak.c
misc/tweak.c
+2
-0
int09.c
msdos/int09.c
+2
-0
int33.c
msdos/int33.c
+2
-0
ole2nls.c
ole/ole2nls.c
+2
-0
bin2res.c
tools/bin2res.c
+2
-0
genres.c
tools/wrc/genres.c
+1
-0
parser.y
tools/wrc/parser.y
+1
-0
clipboard.c
windows/clipboard.c
+2
-0
dialog.c
windows/dialog.c
+2
-0
hook.c
windows/hook.c
+1
-0
input.c
windows/input.c
+1
-0
keyboard.c
windows/keyboard.c
+1
-0
mdi.c
windows/mdi.c
+2
-0
No files found.
controls/icontitle.c
View file @
44a18222
...
...
@@ -7,7 +7,9 @@
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/winuser16.h"
...
...
dlls/commdlg/filedlgbrowser.c
View file @
44a18222
...
...
@@ -7,6 +7,7 @@
#include <stdio.h>
#include "windef.h"
#include "winbase.h"
#include "winnls.h"
#include "wingdi.h"
#include "winuser.h"
...
...
dlls/dsound/dsound_main.c
View file @
44a18222
...
...
@@ -34,6 +34,7 @@
#include <math.h>
/* Insomnia - pow() function */
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winerror.h"
...
...
dlls/msvideo/drawdib.c
View file @
44a18222
...
...
@@ -7,9 +7,9 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winbase.h"
#include "wine/winbase16.h"
#include "debugtools.h"
#include "vfw.h"
...
...
dlls/ole32/clipboard.c
View file @
44a18222
...
...
@@ -47,9 +47,9 @@
#include <assert.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winbase.h"
#include "winerror.h"
#include "winnls.h"
#include "ole2.h"
...
...
dlls/ole32/ole2nls.c
View file @
44a18222
...
...
@@ -10,7 +10,9 @@
#include <ctype.h>
#include <stdlib.h>
#include <locale.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/windef16.h"
...
...
dlls/oleaut32/ole2disp.c
View file @
44a18222
...
...
@@ -4,7 +4,9 @@
* Copyright 1995 Martin von Loewis
*/
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winerror.h"
...
...
dlls/oleaut32/oleaut.c
View file @
44a18222
...
...
@@ -3,7 +3,9 @@
*
*/
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winerror.h"
...
...
dlls/oleaut32/stubs.c
View file @
44a18222
...
...
@@ -7,6 +7,7 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "debugtools.h"
...
...
dlls/richedit/rtf.h
View file @
44a18222
...
...
@@ -4,6 +4,7 @@
#include <stdio.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "richedit.h"
...
...
dlls/user/user_main.c
View file @
44a18222
...
...
@@ -3,6 +3,7 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winreg.h"
...
...
dlls/winmm/joystick/joystick.c
View file @
44a18222
...
...
@@ -36,7 +36,9 @@
#ifdef HAVE_SYS_ERRNO_H
#include <sys/errno.h>
#endif
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/mcianim/mcianim.c
View file @
44a18222
...
...
@@ -6,6 +6,7 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/mciavi/mciavi.c
View file @
44a18222
...
...
@@ -7,7 +7,9 @@
*/
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/mcicda/mcicda.c
View file @
44a18222
...
...
@@ -9,7 +9,9 @@
#include "config.h"
#include <stdio.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/mciseq/mcimidi.c
View file @
44a18222
...
...
@@ -17,7 +17,9 @@
#include <stdlib.h>
#include <stdio.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/mciwave/mciwave.c
View file @
44a18222
...
...
@@ -9,6 +9,7 @@
#include "winerror.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/midimap/midimap.c
View file @
44a18222
...
...
@@ -6,6 +6,7 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/time.c
View file @
44a18222
...
...
@@ -8,7 +8,9 @@
#include <time.h>
#include <sys/time.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "winemm.h"
...
...
dlls/winmm/wavemap/wavemap.c
View file @
44a18222
...
...
@@ -12,6 +12,7 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/wineoss/midi.c
View file @
44a18222
...
...
@@ -18,7 +18,9 @@
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
dlls/winmm/wineoss/oss.c
View file @
44a18222
...
...
@@ -6,6 +6,7 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
...
...
include/win.h
View file @
44a18222
...
...
@@ -8,6 +8,7 @@
#define __WINE_WIN_H
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winproc.h"
#include "winuser.h"
...
...
include/winpos.h
View file @
44a18222
...
...
@@ -8,6 +8,7 @@
#define __WINE_WINPOS_H
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
...
...
misc/tweak.c
View file @
44a18222
...
...
@@ -29,7 +29,9 @@
*****************************************************************************/
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "tweak.h"
...
...
msdos/int09.c
View file @
44a18222
...
...
@@ -4,7 +4,9 @@
#include <stdlib.h>
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "miscemu.h"
...
...
msdos/int33.c
View file @
44a18222
...
...
@@ -3,7 +3,9 @@
*/
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "miscemu.h"
...
...
ole/ole2nls.c
View file @
44a18222
...
...
@@ -11,7 +11,9 @@
#include <ctype.h>
#include <stdlib.h>
#include <locale.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/unicode.h"
...
...
tools/bin2res.c
View file @
44a18222
...
...
@@ -26,7 +26,9 @@
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
...
...
tools/wrc/genres.c
View file @
44a18222
...
...
@@ -22,6 +22,7 @@
#include "genres.h"
#include "utils.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
...
...
tools/wrc/parser.y
View file @
44a18222
...
...
@@ -124,6 +124,7 @@
#include "preproc.h"
#include "parser.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
...
...
windows/clipboard.c
View file @
44a18222
...
...
@@ -23,7 +23,9 @@
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/winuser16.h"
...
...
windows/dialog.c
View file @
44a18222
...
...
@@ -10,8 +10,10 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "windef.h"
#include "winnls.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "windowsx.h"
...
...
windows/hook.c
View file @
44a18222
...
...
@@ -15,6 +15,7 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/winuser16.h"
...
...
windows/input.c
View file @
44a18222
...
...
@@ -17,6 +17,7 @@
#include "windef.h"
#include "winnls.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/winbase16.h"
...
...
windows/keyboard.c
View file @
44a18222
...
...
@@ -14,6 +14,7 @@
#include <ctype.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/keyboard16.h"
...
...
windows/mdi.c
View file @
44a18222
...
...
@@ -70,7 +70,9 @@
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/unicode.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