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
33929be4
Commit
33929be4
authored
Jul 18, 2001
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jul 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Made sure that the files that contains the declarations
of implementated functions are included. - Corrected mismatching prototypes. - Cleaned up the include section.
parent
3dd61879
Hide whitespace changes
Inline
Side-by-side
Showing
35 changed files
with
207 additions
and
92 deletions
+207
-92
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+5
-2
main.c
dlls/ddraw/dclipper/main.c
+5
-1
mesa.c
dlls/ddraw/direct3d/mesa.c
+6
-4
wndproc.c
dlls/ddraw/dsurface/wndproc.c
+5
-2
helper.c
dlls/ddraw/helper.c
+9
-10
comm.c
dlls/kernel/comm.c
+5
-2
kernel_main.c
dlls/kernel/kernel_main.c
+6
-3
pcmconverter.c
dlls/msacm/pcmconverter.c
+8
-2
errno.c
dlls/msvcrt/errno.c
+6
-3
mbcs.c
dlls/msvcrt/mbcs.c
+4
-2
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-1
lstr.c
dlls/user/lstr.c
+7
-5
wsprintf.c
dlls/user/wsprintf.c
+6
-2
resource.c
dlls/version/resource.c
+7
-6
joystick.c
dlls/winmm/joystick.c
+5
-0
mci.c
dlls/winmm/mci.c
+7
-3
mmio.c
dlls/winmm/mmio.c
+6
-2
mmsystem.c
dlls/winmm/mmsystem.c
+5
-1
time.c
dlls/winmm/time.c
+7
-1
dos_fs.c
files/dos_fs.c
+8
-5
objects.c
graphics/win16drv/objects.c
+5
-0
objects.c
graphics/x11drv/objects.c
+2
-0
string.h
include/msvcrt/string.h
+1
-1
winuser16.h
include/wine/winuser16.h
+0
-1
winuser.h
include/winuser.h
+6
-5
task.c
loader/task.c
+14
-8
environ.c
memory/environ.c
+7
-3
registry.c
misc/registry.c
+9
-6
dosconf.c
msdos/dosconf.c
+8
-2
int29.c
msdos/int29.c
+3
-1
ppdev.c
msdos/ppdev.c
+8
-5
brush.c
objects/brush.c
+8
-1
metafile.c
objects/metafile.c
+6
-2
pen.c
objects/pen.c
+8
-0
file.c
win32/file.c
+4
-0
No files found.
dlls/comctl32/comctl32undoc.c
View file @
33929be4
...
...
@@ -20,11 +20,14 @@
#include <stdlib.h>
/* atoi */
#include <ctype.h>
#include "commctrl.h"
#include "objbase.h"
#include "winbase.h"
#include "winerror.h"
#include "wine/unicode.h"
#include "
objbase
.h"
#include "commctrl.h"
#include "
comctl32
.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
commctrl
);
...
...
dlls/ddraw/dclipper/main.c
View file @
33929be4
...
...
@@ -8,12 +8,16 @@
#include <stdlib.h>
#include <string.h>
#include "ddraw.h"
#include "winerror.h"
#include "debugtools.h"
#include "ddraw_private.h"
#include "dclipper/main.h"
#include "ddraw/main.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ddraw
);
/******************************************************************************
...
...
dlls/ddraw/direct3d/mesa.c
View file @
33929be4
...
...
@@ -6,13 +6,15 @@
#include <string.h>
#include <stdio.h>
#include "winerror.h"
#include "ddraw.h"
#include "d3d.h"
#include "
options
.h"
#include "
debugtools
.h"
#include "
ddraw
.h"
#include "
winerror
.h"
#include "ddraw_private.h"
#include "mesa_private.h"
#include "options.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/dsurface/wndproc.c
View file @
33929be4
...
...
@@ -4,14 +4,17 @@
*/
#include "config.h"
#include "winerror.h"
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include "debugtools.h"
#include "winerror.h"
#include "ddraw_private.h"
#include "wndproc.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/helper.c
View file @
33929be4
...
...
@@ -10,14 +10,17 @@
#include <stddef.h>
#include "d3d.h"
#include "ddraw.h"
#include "winerror.h"
#include "heap.h"
#include "wine/exception.h"
#include "ddraw.h"
#include "d3d.h"
#include "debugtools.h"
#include "ddraw_private.h"
#include "heap.h"
#include "options.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ddraw
);
/******************************************************************************
...
...
@@ -217,9 +220,7 @@ void DDRAW_dump_paletteformat(DWORD dwFlags)
DDRAW_dump_flags
(
dwFlags
,
flags
,
sizeof
(
flags
)
/
sizeof
(
flags
[
0
]));
}
void
DDRAW_dump_pixelformat
(
void
*
in
)
{
LPDDPIXELFORMAT
pf
=
(
LPDDPIXELFORMAT
)
in
;
void
DDRAW_dump_pixelformat
(
const
DDPIXELFORMAT
*
pf
)
{
DPRINTF
(
"( "
);
DDRAW_dump_pixelformat_flag
(
pf
->
dwFlags
);
if
(
pf
->
dwFlags
&
DDPF_FOURCC
)
{
...
...
@@ -282,9 +283,7 @@ static void DDRAW_dump_DWORD(const void *in) {
static
void
DDRAW_dump_PTR
(
const
void
*
in
)
{
DPRINTF
(
"%p"
,
*
((
const
void
**
)
in
));
}
void
DDRAW_dump_DDCOLORKEY
(
const
void
*
in
)
{
const
DDCOLORKEY
*
ddck
=
(
const
DDCOLORKEY
*
)
in
;
void
DDRAW_dump_DDCOLORKEY
(
const
DDCOLORKEY
*
ddck
)
{
DPRINTF
(
" Low : %ld - High : %ld"
,
ddck
->
dwColorSpaceLowValue
,
ddck
->
dwColorSpaceHighValue
);
}
...
...
dlls/kernel/comm.c
View file @
33929be4
...
...
@@ -51,14 +51,17 @@
#include <sys/ioctl.h>
#include <unistd.h>
#include <sys/poll.h>
#include "windef.h"
#ifdef HAVE_SYS_MODEM_H
# include <sys/modem.h>
#endif
#ifdef HAVE_SYS_STRTIO_H
# include <sys/strtio.h>
#endif
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "heap.h"
#include "options.h"
#include "wine/port.h"
...
...
dlls/kernel/kernel_main.c
View file @
33929be4
...
...
@@ -2,17 +2,20 @@
* Kernel initialization code
*/
#include "config.h"
#include <assert.h>
#include <ctype.h>
#include <string.h>
#include "winbase.h"
#include "wine/winbase16.h"
#include "wine/winbase16.h"
#include "callback.h"
#include "global.h"
#include "miscemu.h"
#include "module.h"
#include "task.h"
#include "miscemu.h"
#include "global.h"
extern
void
CODEPAGE_Init
(
void
);
extern
BOOL
RELAY_Init
(
void
);
...
...
dlls/msacm/pcmconverter.c
View file @
33929be4
...
...
@@ -15,14 +15,20 @@
* embedded driver handling scheme in msacm32.dll which isn't done yet
*/
#include "config.h"
#include <assert.h>
#include <string.h>
#include "winnls.h"
#include "msacm.h"
#include "winbase.h"
#include "wingdi.h"
#include "winnls.h"
#include "winuser.h"
#include "msacm.h"
#include "msacmdrv.h"
#include "wineacm.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
msacm
);
...
...
dlls/msvcrt/errno.c
View file @
33929be4
...
...
@@ -9,7 +9,10 @@
#include <stdio.h>
#include <string.h>
#include "msvcrt/conio.h"
#include "msvcrt/stdlib.h"
#include "msvcrt/string.h"
DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
...
...
@@ -19,7 +22,7 @@ DEFAULT_DEBUG_CHANNEL(msvcrt);
void
MSVCRT__set_errno
(
int
err
)
{
int
*
errno
=
GET_THREAD_VAR_PTR
(
errno
);
int
*
doserrno
=
GET_THREAD_VAR_PTR
(
doserrno
);
unsigned
long
*
doserrno
=
GET_THREAD_VAR_PTR
(
doserrno
);
*
doserrno
=
err
;
...
...
@@ -86,7 +89,7 @@ int* MSVCRT__errno(void)
/*********************************************************************
* __doserrno (MSVCRT.@)
*/
int
*
__doserrno
(
void
)
unsigned
long
*
__doserrno
(
void
)
{
return
GET_THREAD_VAR_PTR
(
doserrno
);
}
...
...
@@ -102,7 +105,7 @@ char* MSVCRT_strerror(int err)
/**********************************************************************
* _strerror (MSVCRT.@)
*/
c
onst
c
har
*
_strerror
(
const
char
*
err
)
char
*
_strerror
(
const
char
*
err
)
{
static
char
strerrbuff
[
256
];
/* FIXME: Per thread, nprintf */
sprintf
(
strerrbuff
,
"%s: %s
\n
"
,
err
,
MSVCRT_strerror
(
GET_THREAD_VAR
(
errno
)));
...
...
dlls/msvcrt/mbcs.c
View file @
33929be4
...
...
@@ -8,8 +8,10 @@
* Not currently binary compatible with win32. MSVCRT_mbctype must be
* populated correctly and the ismb* functions should reference it.
*/
#include "msvcrt.h"
#include "msvcrt/stdlib.h"
#include "msvcrt/string.h"
...
...
@@ -184,7 +186,7 @@ char *_mbsrchr(const char *s,unsigned int x)
/*********************************************************************
* mbtowc(MSVCRT.@)
*/
int
MSVCRT_mbtowc
(
WCHAR
*
dst
,
const
unsigned
char
*
str
,
unsigned
int
n
)
int
MSVCRT_mbtowc
(
WCHAR
*
dst
,
const
char
*
str
,
unsigned
int
n
)
{
if
(
n
<=
0
||
!
str
)
return
0
;
...
...
@@ -385,7 +387,7 @@ char *_mbsnset(char *str, unsigned int c, unsigned int len)
/*********************************************************************
* _mbstrlen(MSVCRT.@)
*/
int
_mbstrlen
(
const
unsigned
char
*
str
)
MSVCRT_size_t
_mbstrlen
(
const
char
*
str
)
{
if
(
MSVCRT___mb_cur_max
>
1
)
{
...
...
dlls/msvcrt/msvcrt.h
View file @
33929be4
...
...
@@ -17,7 +17,7 @@ extern DWORD MSVCRT_tls_index;
typedef
struct
__MSVCRT_thread_data
{
int
errno
;
int
doserrno
;
unsigned
long
doserrno
;
}
MSVCRT_thread_data
;
#define GET_THREAD_DATA(x) \
...
...
dlls/user/lstr.c
View file @
33929be4
...
...
@@ -6,22 +6,24 @@
* Copyright 1996 Marcus Meissner
*/
#include "config.h"
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "winnls.h"
#include "winerror.h"
#include "wine/exception.h"
#include "wine/keyboard16.h"
#include "wine/unicode.h"
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "wine/unicode.h"
#include "wine/exception.h"
#include "heap.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
resource
);
...
...
dlls/user/wsprintf.c
View file @
33929be4
...
...
@@ -7,11 +7,15 @@
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
#include "wine/winbase16.h"
#include "win
def
.h"
#include "win
base
.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "stackframe.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
string
);
...
...
dlls/version/resource.c
View file @
33929be4
...
...
@@ -6,20 +6,21 @@
* Copyright 1999 Ulrich Weigand
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include "config.h"
#include "winbase.h"
#include "wine/winbase16.h"
#include "winnls.h"
#include "wine/unicode.h"
#include "lzexpand.h"
#include "wine/unicode.h"
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "winver.h"
#include "lzexpand.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ver
);
...
...
dlls/winmm/joystick.c
View file @
33929be4
...
...
@@ -15,11 +15,16 @@
#include <string.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include "mmsystem.h"
#include "winbase.h"
#include "winnls.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/mmsystem16.h"
#include "winemm.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
mmsys
);
...
...
dlls/winmm/mci.c
View file @
33929be4
...
...
@@ -10,15 +10,19 @@
#include <stdio.h>
#include <string.h>
#include "mmsystem.h"
#include "winbase.h"
#include "wingdi.h"
#include "winreg.h"
#include "winuser.h"
#include "wine/mmsystem16.h"
#include "wine/winbase16.h"
#include "digitalv.h"
#include "heap.h"
#include "winemm.h"
#include "digitalv.h"
#include "wine/winbase16.h"
#include "debugtools.h"
#include "winreg.h"
DEFAULT_DEBUG_CHANNEL
(
mci
);
...
...
dlls/winmm/mmio.c
View file @
33929be4
...
...
@@ -22,13 +22,17 @@
#include <string.h>
#include <errno.h>
#include <assert.h>
#include "mmsystem.h"
#include "windef.h"
#include "wine/mmsystem16.h"
#include "wine/winbase16.h"
#include "heap.h"
#include "mmsystem.h"
#include "debugtools.h"
#include "winemm.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
mmio
);
/**************************************************************************
...
...
dlls/winmm/mmsystem.c
View file @
33929be4
...
...
@@ -20,13 +20,17 @@
#include <string.h>
#include "mmsystem.h"
#include "winbase.h"
#include "wingdi.h"
#include "wine/mmsystem16.h"
#include "wine/winuser16.h"
#include "heap.h"
#include "ntddk.h"
#include "winemm.h"
#include "debugtools.h"
#include "ntddk.h"
DEFAULT_DEBUG_CHANNEL
(
mmsys
);
...
...
dlls/winmm/time.c
View file @
33929be4
...
...
@@ -6,17 +6,23 @@
* Copyright 1993 Martin Ayotte
*/
#include "config.h"
#include "wine/port.h"
#include <time.h>
#include <sys/time.h>
#include <unistd.h>
#include "mmsystem.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/mmsystem16.h"
#include "winemm.h"
#include "debugtools.h"
#include "wine/port.h"
DEFAULT_DEBUG_CHANNEL
(
mmtime
);
...
...
files/dos_fs.c
View file @
33929be4
...
...
@@ -6,6 +6,7 @@
*/
#include "config.h"
#include <sys/types.h>
#include <ctype.h>
#include <dirent.h>
...
...
@@ -22,17 +23,19 @@
#include <unistd.h>
#include "windef.h"
#include "ntddk.h"
#include "winnls.h"
#include "wine/winbase16.h"
#include "wine/unicode.h"
#include "winerror.h"
#include "wingdi.h"
#include "wine/unicode.h"
#include "wine/winbase16.h"
#include "drive.h"
#include "file.h"
#include "heap.h"
#include "msdos.h"
#include "
server
.h"
#include "
ntddk
.h"
#include "options.h"
#include "server.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
dosfs
);
...
...
graphics/win16drv/objects.c
View file @
33929be4
...
...
@@ -4,12 +4,17 @@
* Copyright 1993 Alexandre Julliard
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include "bitmap.h"
#include "brush.h"
#include "font.h"
#include "pen.h"
#include "win16drv.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
gdi
);
...
...
graphics/x11drv/objects.c
View file @
33929be4
...
...
@@ -13,6 +13,8 @@
#include "brush.h"
#include "font.h"
#include "pen.h"
#include "x11drv.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
gdi
);
...
...
include/msvcrt/string.h
View file @
33929be4
...
...
@@ -34,7 +34,7 @@ void* _memccpy(void*,const void*,int,MSVCRT(size_t));
int
_memicmp
(
const
void
*
,
const
void
*
,
MSVCRT
(
size_t
));
int
_strcmpi
(
const
char
*
,
const
char
*
);
char
*
_strdup
(
const
char
*
);
char
*
_strerror
(
int
);
char
*
_strerror
(
const
char
*
);
int
_stricmp
(
const
char
*
,
const
char
*
);
int
_stricoll
(
const
char
*
,
const
char
*
);
char
*
_strlwr
(
char
*
);
...
...
include/wine/winuser16.h
View file @
33929be4
...
...
@@ -567,7 +567,6 @@ FARPROC16 WINAPI SetWindowsHook16(INT16,HOOKPROC16);
HHOOK
WINAPI
SetWindowsHookEx16
(
INT16
,
HOOKPROC16
,
HINSTANCE16
,
HTASK16
);
BOOL16
WINAPI
UnhookWindowsHook16
(
INT16
,
HOOKPROC16
);
BOOL16
WINAPI
UnhookWindowsHookEx16
(
HHOOK
);
INT16
WINAPI
wvsnprintf16
(
LPSTR
,
UINT16
,
LPCSTR
,
LPCVOID
);
VOID
WINAPI
CalcChildScroll16
(
HWND16
,
WORD
);
VOID
WINAPI
CascadeChildWindows16
(
HWND16
,
WORD
);
INT16
WINAPI
CloseComm16
(
INT16
);
...
...
include/winuser.h
View file @
33929be4
...
...
@@ -3735,11 +3735,12 @@ UINT WINAPI MapVirtualKeyW(UINT,UINT);
UINT
WINAPI
MapVirtualKeyExA
(
UINT
,
UINT
,
HKL
);
UINT
WINAPI
MapVirtualKeyExW
(
UINT
,
UINT
,
HKL
);
#define MapVirtualKeyEx WINELIB_NAME_AW(MapVirtualKeyEx)
BOOL
WINAPI
MapDialogRect
(
HWND
,
LPRECT
);
INT
WINAPI
MapWindowPoints
(
HWND
,
HWND
,
LPPOINT
,
UINT
);
BOOL
WINAPI
MessageBeep
(
UINT
);
INT
WINAPI
MessageBoxA
(
HWND
,
LPCSTR
,
LPCSTR
,
UINT
);
INT
WINAPI
MessageBoxW
(
HWND
,
LPCWSTR
,
LPCWSTR
,
UINT
);
BOOL
WINAPI
MapDialogRect
(
HWND
,
LPRECT
);
INT
WINAPI
MapWindowPoints
(
HWND
,
HWND
,
LPPOINT
,
UINT
);
UINT
WINAPI
MenuItemFromPoint
(
HWND
,
HMENU
,
POINT
);
BOOL
WINAPI
MessageBeep
(
UINT
);
INT
WINAPI
MessageBoxA
(
HWND
,
LPCSTR
,
LPCSTR
,
UINT
);
INT
WINAPI
MessageBoxW
(
HWND
,
LPCWSTR
,
LPCWSTR
,
UINT
);
#define MessageBox WINELIB_NAME_AW(MessageBox)
INT
WINAPI
MessageBoxIndirectA
(
LPMSGBOXPARAMSA
);
INT
WINAPI
MessageBoxIndirectW
(
LPMSGBOXPARAMSW
);
...
...
loader/task.c
View file @
33929be4
...
...
@@ -4,14 +4,21 @@
* Copyright 1995 Alexandre Julliard
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include "wine/port.h"
#include "winbase.h"
#include "wingdi.h"
#include "winnt.h"
#include "winuser.h"
#include "winsock.h"
#include "wine/winbase16.h"
#include "ntddk.h"
#include "callback.h"
#include "drive.h"
#include "file.h"
...
...
@@ -19,18 +26,17 @@
#include "instance.h"
#include "miscemu.h"
#include "module.h"
#include "ntddk.h"
#include "selectors.h"
#include "services.h"
#include "server.h"
#include "syslevel.h"
#include "stackframe.h"
#include "task.h"
#include "thread.h"
#include "toolhelp.h"
#include "winnt.h"
#include "syslevel.h"
#include "winsock.h"
#include "debugtools.h"
#include "services.h"
#include "server.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
task
);
DECLARE_DEBUG_CHANNEL
(
relay
);
...
...
memory/environ.c
View file @
33929be4
...
...
@@ -4,14 +4,18 @@
* Copyright 1996, 1998 Alexandre Julliard
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
#include "wine/port.h"
#include "windef.h"
#include "winnls.h"
#include "winerror.h"
#include "ntddk.h"
#include "wine/winbase16.h"
#include "heap.h"
#include "ntddk.h"
#include "selectors.h"
/* Win32 process environment database */
...
...
misc/registry.c
View file @
33929be4
...
...
@@ -29,18 +29,21 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#include "winerror.h"
#include "winnt.h"
#include "winreg.h"
#include "wine/winbase16.h"
#include "file.h"
#include "heap.h"
#include "debugtools.h"
#include "options.h"
#include "winreg.h"
#include "server.h"
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#include "winnt.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
reg
);
...
...
msdos/dosconf.c
View file @
33929be4
...
...
@@ -5,16 +5,22 @@
*
*/
#include "config.h"
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include "winbase.h"
#include "file.h"
#include "miscemu.h"
#include "msdos.h"
#include "debugtools.h"
#include "options.h"
#include "file.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
profile
);
...
...
msdos/int29.c
View file @
33929be4
...
...
@@ -3,9 +3,11 @@
*/
#include "config.h"
#include "windef.h"
#include "winnt.h"
#include "console.h"
#include "miscemu.h"
/**********************************************************************
* INT_Int29Handler
...
...
msdos/ppdev.c
View file @
33929be4
...
...
@@ -4,11 +4,7 @@
#include "config.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
int
);
#ifdef HAVE_PPDEV
#ifdef HAVE_PPDEV
#include <stdlib.h>
#include <sys/types.h>
...
...
@@ -21,6 +17,11 @@ DEFAULT_DEBUG_CHANNEL(int);
#include "winerror.h"
#include "winreg.h"
#include "miscemu.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
int
);
typedef
struct
_PPDEVICESTRUCT
{
int
fd
;
/* NULL if device not available */
...
...
@@ -272,6 +273,8 @@ BOOL IO_pp_outp(int port, DWORD* res)
#else
/* HAVE_PPDEV */
#include "windef.h"
char
IO_pp_init
(
void
)
{
return
1
;
...
...
objects/brush.c
View file @
33929be4
...
...
@@ -4,10 +4,17 @@
* Copyright 1993, 1994 Alexandre Julliard
*/
#include "config.h"
#include <string.h>
#include "winbase.h"
#include "brush.h"
#include "wingdi.h"
#include "wine/wingdi16.h"
#include "bitmap.h"
#include "brush.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
gdi
);
...
...
objects/metafile.c
View file @
33929be4
...
...
@@ -30,16 +30,20 @@
* HDMD - 14/4/1999
*/
#include "config.h"
#include <string.h>
#include <fcntl.h>
#include "wine/winbase16.h"
#include "
metafile
.h"
#include "
wine/wingdi16
.h"
#include "bitmap.h"
#include "global.h"
#include "heap.h"
#include "metafile.h"
#include "toolhelp.h"
#include "debugtools.h"
#include "global.h"
DEFAULT_DEBUG_CHANNEL
(
metafile
);
...
...
objects/pen.c
View file @
33929be4
...
...
@@ -4,8 +4,16 @@
* Copyright 1993 Alexandre Julliard
*/
#include "config.h"
#include <string.h>
#include "windef.h"
#include "wingdi.h"
#include "wine/wingdi16.h"
#include "pen.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
gdi
);
...
...
win32/file.c
View file @
33929be4
...
...
@@ -21,10 +21,14 @@
#include <fcntl.h>
#include <string.h>
#include <time.h>
#include "winbase.h"
#include "winerror.h"
#include "wine/winbase16.h"
#include "file.h"
#include "heap.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
file
);
...
...
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