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
5ab9d860
Commit
5ab9d860
authored
Aug 09, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some unnecessary #includes and dll dependencies.
parent
52900c81
Hide whitespace changes
Inline
Side-by-side
Showing
40 changed files
with
60 additions
and
117 deletions
+60
-117
icontitle.c
controls/icontitle.c
+0
-1
widgets.c
controls/widgets.c
+0
-1
tab.c
dlls/comctl32/tab.c
+1
-5
crtdll_main.c
dlls/crtdll/crtdll_main.c
+0
-1
dga.c
dlls/ddraw/ddraw/dga.c
+0
-1
main.c
dlls/ddraw/ddraw/main.c
+0
-1
x11.c
dlls/ddraw/ddraw/x11.c
+0
-1
dga.c
dlls/ddraw/dga.c
+0
-4
dga2.c
dlls/ddraw/dga2.c
+0
-3
main.c
dlls/ddraw/direct3d/main.c
+0
-1
mesa.c
dlls/ddraw/direct3d/mesa.c
+0
-1
helper.c
dlls/ddraw/helper.c
+0
-4
main.c
dlls/ddraw/main.c
+5
-8
dinput_main.c
dlls/dinput/dinput_main.c
+1
-2
msacmdrv.h
dlls/msacm/msacmdrv.h
+0
-0
compobj.c
dlls/ole32/compobj.c
+11
-12
storage.c
dlls/ole32/storage.c
+1
-2
confdlg.c
dlls/serialui/confdlg.c
+2
-5
brsfolder.c
dlls/shell32/brsfolder.c
+0
-1
ddeml.c
dlls/user/ddeml.c
+1
-2
http.c
dlls/wininet/http.c
+16
-17
internet.c
dlls/wininet/internet.c
+7
-8
async.c
dlls/winsock/async.c
+2
-3
socket.c
dlls/winsock/socket.c
+1
-3
change.c
files/change.c
+0
-2
dos_fs.c
files/dos_fs.c
+2
-3
painting.c
graphics/painting.c
+0
-1
ntddk.h
include/ntddk.h
+1
-0
ole.h
include/ole.h
+0
-6
obj_base.h
include/wine/obj_base.h
+2
-0
comm.c
misc/comm.c
+0
-1
main.c
misc/main.c
+1
-5
int09.c
msdos/int09.c
+1
-2
bitmap.c
objects/bitmap.c
+0
-1
search.c
programs/notepad/search.c
+1
-1
synchro.c
scheduler/synchro.c
+0
-2
caret.c
windows/caret.c
+3
-3
cursoricon.c
windows/cursoricon.c
+1
-1
queue.c
windows/queue.c
+0
-1
wnd.c
windows/x11drv/wnd.c
+0
-1
No files found.
controls/icontitle.c
View file @
5ab9d860
...
...
@@ -12,7 +12,6 @@
#include "winuser.h"
#include "wine/winuser16.h"
#include "win.h"
#include "desktop.h"
#include "heap.h"
BOOL
bMultiLineTitle
;
...
...
controls/widgets.c
View file @
5ab9d860
...
...
@@ -15,7 +15,6 @@
#include "heap.h"
#include "mdi.h"
#include "menu.h"
#include "module.h"
#include "scroll.h"
#include "static.h"
...
...
dlls/comctl32/tab.c
View file @
5ab9d860
...
...
@@ -17,7 +17,6 @@
#include "commctrl.h"
#include "debugtools.h"
#include "cache.h"
#include "win.h"
DEFAULT_DEBUG_CHANNEL
(
tab
);
...
...
@@ -1257,15 +1256,12 @@ TAB_DrawItemInterior
if
(
(
lStyle
&
TCS_OWNERDRAWFIXED
)
&&
GetParent
(
hwnd
)
)
{
DRAWITEMSTRUCT
dis
;
WND
*
pwndPtr
;
UINT
id
;
/*
* get the control id
*/
pwndPtr
=
WIN_FindWndPtr
(
hwnd
);
id
=
pwndPtr
->
wIDmenu
;
WIN_ReleaseWndPtr
(
pwndPtr
);
id
=
GetWindowLongA
(
hwnd
,
GWL_ID
);
/*
* put together the DRAWITEMSTRUCT
...
...
dlls/crtdll/crtdll_main.c
View file @
5ab9d860
...
...
@@ -50,7 +50,6 @@ UB 000416:
#include "winerror.h"
#include "ntddk.h"
#include "debugtools.h"
#include "module.h"
#include "heap.h"
#include "crtdll.h"
#include "drive.h"
...
...
dlls/ddraw/ddraw/dga.c
View file @
5ab9d860
...
...
@@ -33,7 +33,6 @@
#include "ddraw.h"
#include "d3d.h"
#include "debugtools.h"
#include "message.h"
#include "options.h"
#define RESTORE_SIGNALS
...
...
dlls/ddraw/ddraw/main.c
View file @
5ab9d860
...
...
@@ -22,7 +22,6 @@
#include "ddraw.h"
#include "d3d.h"
#include "debugtools.h"
#include "message.h"
#include "options.h"
DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/ddraw/x11.c
View file @
5ab9d860
...
...
@@ -21,7 +21,6 @@
#include "d3d.h"
#include "win.h"
#include "debugtools.h"
#include "message.h"
#include "options.h"
DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/dga.c
View file @
5ab9d860
...
...
@@ -26,15 +26,11 @@
#include <string.h>
#include <stdio.h>
#include "gdi.h"
#include "heap.h"
#include "dc.h"
#include "win.h"
#include "wine/exception.h"
#include "ddraw.h"
#include "d3d.h"
#include "debugtools.h"
#include "message.h"
#include "options.h"
#include "dga_private.h"
...
...
dlls/ddraw/dga2.c
View file @
5ab9d860
...
...
@@ -17,13 +17,10 @@
#include "gdi.h"
#include "heap.h"
#include "dc.h"
#include "win.h"
#include "wine/exception.h"
#include "ddraw.h"
#include "d3d.h"
#include "debugtools.h"
#include "message.h"
#include "options.h"
#include "dga2_private.h"
...
...
dlls/ddraw/direct3d/main.c
View file @
5ab9d860
...
...
@@ -9,7 +9,6 @@
#include "winerror.h"
#include "ddraw.h"
#include "d3d.h"
#include "message.h"
#include "options.h"
#include "debugtools.h"
...
...
dlls/ddraw/direct3d/mesa.c
View file @
5ab9d860
...
...
@@ -9,7 +9,6 @@
#include "winerror.h"
#include "ddraw.h"
#include "d3d.h"
#include "message.h"
#include "options.h"
#include "debugtools.h"
...
...
dlls/ddraw/helper.c
View file @
5ab9d860
...
...
@@ -15,15 +15,11 @@
#include <stdio.h>
#include "winerror.h"
#include "gdi.h"
#include "heap.h"
#include "dc.h"
#include "win.h"
#include "wine/exception.h"
#include "ddraw.h"
#include "d3d.h"
#include "debugtools.h"
#include "message.h"
#include "options.h"
DEFAULT_DEBUG_CHANNEL
(
ddraw
);
...
...
dlls/ddraw/main.c
View file @
5ab9d860
...
...
@@ -15,11 +15,8 @@
#include "winerror.h"
#include "heap.h"
#include "dc.h"
#include "win.h"
#include "wine/exception.h"
#include "debugtools.h"
#include "message.h"
#include "initguid.h"
#include "ddraw.h"
...
...
@@ -232,12 +229,12 @@ static LRESULT WINAPI DDWndProc(HWND hwnd,UINT msg,WPARAM wParam,LPARAM lParam)
ret
=
DefWindowProcA
(
ddraw
->
d
->
mainWindow
,
msg
,
wParam
,
lParam
);
if
(
!
ret
)
{
WND
*
tmpWnd
=
WIN_FindWndPtr
(
ddraw
->
d
->
mainWindow
);
/* We didn't handle the message - give it to the application */
if
(
ddraw
&&
ddraw
->
d
->
mainWindow
&&
tmpWnd
)
ret
=
CallWindowProcA
(
tmpWnd
->
winproc
,
ddraw
->
d
->
mainWindow
,
msg
,
wParam
,
lParam
);
WIN_ReleaseWndPtr
(
tmpWnd
);
if
(
ddraw
&&
ddraw
->
d
->
mainWindow
)
{
WNDPROC
winproc
=
(
WNDPROC
)
GetWindowLongA
(
ddraw
->
d
->
mainWindow
,
GWL_WNDPROC
);
ret
=
CallWindowProcA
(
winproc
,
ddraw
->
d
->
mainWindow
,
msg
,
wParam
,
lParam
);
}
}
return
ret
;
}
/* else FALLTHROUGH */
...
...
dlls/dinput/dinput_main.c
View file @
5ab9d860
...
...
@@ -42,7 +42,6 @@
#include "debugtools.h"
#include "input.h"
#include "user.h"
#include "message.h"
#include "mouse.h"
#include "winbase.h"
#include "winerror.h"
...
...
@@ -381,7 +380,7 @@ static void fill_DataFormat(void *out, void *in, DataFormat *df) {
}
}
static
DataFormat
*
create_DataFormat
(
DIDATAFORMAT
*
wine_format
,
DIDATAFORMAT
*
asked_format
,
int
*
offset
)
{
static
DataFormat
*
create_DataFormat
(
DIDATAFORMAT
*
wine_format
,
LPCDIDATAFORMAT
asked_format
,
int
*
offset
)
{
DataFormat
*
ret
;
DataTransform
*
dt
;
int
i
,
j
;
...
...
include
/msacmdrv.h
→
dlls/msacm
/msacmdrv.h
View file @
5ab9d860
File moved
dlls/ole32/compobj.c
View file @
5ab9d860
...
...
@@ -19,7 +19,6 @@
#include "wine/winbase16.h"
#include "winerror.h"
#include "wownt32.h"
#include "ole.h"
#include "ole2ver.h"
#include "debugtools.h"
#include "file.h"
...
...
@@ -519,7 +518,7 @@ HRESULT WINAPI CLSIDFromString(
CLSID
*
id
/* [out] GUID represented by above string */
)
{
LPOLESTR16
xid
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
idstr
);
OLESTATUS
ret
=
CLSIDFromString16
(
xid
,
id
);
HRESULT
ret
=
CLSIDFromString16
(
xid
,
id
);
HeapFree
(
GetProcessHeap
(),
0
,
xid
);
if
(
ret
!=
S_OK
)
{
/* It appears a ProgID is also valid */
...
...
@@ -535,7 +534,7 @@ HRESULT WINAPI CLSIDFromString(
* NOTES
*
* RETURNS
* the string representation and
OLESTATUS
* the string representation and
HRESULT
*/
static
HRESULT
WINE_StringFromCLSID
(
const
CLSID
*
id
,
/* [in] GUID to be converted */
...
...
@@ -567,7 +566,7 @@ static HRESULT WINE_StringFromCLSID(
TRACE
(
"%p->%s
\n
"
,
id
,
idstr
);
return
OLE
_OK
;
return
S
_OK
;
}
/******************************************************************************
...
...
@@ -575,7 +574,7 @@ static HRESULT WINE_StringFromCLSID(
* Converts a GUID into the respective string representation.
* The target string is allocated using the OLE IMalloc.
* RETURNS
* the string representation and
OLESTATUS
* the string representation and
HRESULT
*/
HRESULT
WINAPI
StringFromCLSID16
(
REFCLSID
id
,
/* [in] the GUID to be converted */
...
...
@@ -583,7 +582,7 @@ HRESULT WINAPI StringFromCLSID16(
)
{
LPMALLOC16
mllc
;
OLESTATUS
ret
;
HRESULT
ret
;
DWORD
args
[
2
];
ret
=
CoGetMalloc16
(
0
,
&
mllc
);
...
...
@@ -615,14 +614,14 @@ HRESULT WINAPI StringFromCLSID16(
* Converts a GUID into the respective string representation.
* The target string is allocated using the OLE IMalloc.
* RETURNS
* the string representation and
OLESTATUS
* the string representation and
HRESULT
*/
HRESULT
WINAPI
StringFromCLSID
(
REFCLSID
id
,
/* [in] the GUID to be converted */
LPOLESTR
*
idstr
/* [out] a pointer to a to-be-allocated pointer pointing to the resulting string */
)
{
char
buf
[
80
];
OLESTATUS
ret
;
HRESULT
ret
;
LPMALLOC
mllc
;
if
((
ret
=
CoGetMalloc
(
0
,
&
mllc
)))
...
...
@@ -752,7 +751,7 @@ HRESULT WINAPI CLSIDFromProgID(
LPCLSID
riid
/* [out] associated CLSID */
)
{
LPOLESTR16
pid
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
progid
);
OLESTATUS
ret
=
CLSIDFromProgID16
(
pid
,
riid
);
HRESULT
ret
=
CLSIDFromProgID16
(
pid
,
riid
);
HeapFree
(
GetProcessHeap
(),
0
,
pid
);
return
ret
;
...
...
@@ -803,7 +802,7 @@ HRESULT WINAPI ReadClassStm(IStream *pStm,REFCLSID rclsid)
/***********************************************************************
* LookupETask (COMPOBJ.94)
*/
OLESTATUS
WINAPI
LookupETask16
(
HTASK16
*
hTask
,
LPVOID
p
)
{
HRESULT
WINAPI
LookupETask16
(
HTASK16
*
hTask
,
LPVOID
p
)
{
FIXME
(
"(%p,%p),stub!
\n
"
,
hTask
,
p
);
if
((
*
hTask
=
GetCurrentTask
())
==
hETask
)
{
memcpy
(
p
,
Table_ETask
,
sizeof
(
Table_ETask
));
...
...
@@ -815,7 +814,7 @@ OLESTATUS WINAPI LookupETask16(HTASK16 *hTask,LPVOID p) {
/***********************************************************************
* SetETask (COMPOBJ.95)
*/
OLESTATUS
WINAPI
SetETask16
(
HTASK16
hTask
,
LPVOID
p
)
{
HRESULT
WINAPI
SetETask16
(
HTASK16
hTask
,
LPVOID
p
)
{
FIXME
(
"(%04x,%p),stub!
\n
"
,
hTask
,
p
);
hETask
=
hTask
;
return
0
;
...
...
@@ -825,7 +824,7 @@ OLESTATUS WINAPI SetETask16(HTASK16 hTask, LPVOID p) {
/***********************************************************************
* CallObjectInWOW (COMPOBJ.201)
*/
OLESTATUS
WINAPI
CallObjectInWOW
(
LPVOID
p1
,
LPVOID
p2
)
{
HRESULT
WINAPI
CallObjectInWOW
(
LPVOID
p1
,
LPVOID
p2
)
{
FIXME
(
"(%p,%p),stub!
\n
"
,
p1
,
p2
);
return
0
;
}
...
...
dlls/ole32/storage.c
View file @
5ab9d860
...
...
@@ -19,7 +19,6 @@
#include "wingdi.h"
#include "wtypes.h"
#include "file.h"
#include "ole.h"
#include "wine/obj_base.h"
#include "wine/obj_storage.h"
#include "heap.h"
...
...
@@ -1648,7 +1647,7 @@ HRESULT WINAPI
StgIsStorageFile
(
LPCOLESTR
fn
)
{
LPOLESTR16
xfn
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
fn
);
OLESTATUS
ret
=
StgIsStorageFile16
(
xfn
);
HRESULT
ret
=
StgIsStorageFile16
(
xfn
);
HeapFree
(
GetProcessHeap
(),
0
,
xfn
);
return
ret
;
...
...
dlls/serialui/confdlg.c
View file @
5ab9d860
...
...
@@ -19,15 +19,12 @@
#include "winbase.h"
#include "winreg.h"
#include "
dialog
.h"
#include "win.h"
#include "
wingdi
.h"
#include "win
user
.h"
#include "debugtools.h"
#include "serialui.h"
#include "winerror.h"
#include "queue.h"
#include "message.h"
DEFAULT_DEBUG_CHANNEL
(
comm
);
HMODULE
SERIALUI_hModule
=
0
;
...
...
dlls/shell32/brsfolder.c
View file @
5ab9d860
...
...
@@ -4,7 +4,6 @@
#include "winerror.h"
#include "heap.h"
#include "dlgs.h"
#include "win.h"
#include "debugtools.h"
#include "winreg.h"
#include "winnls.h"
...
...
dlls/user/ddeml.c
View file @
5ab9d860
...
...
@@ -18,10 +18,9 @@
#include "winerror.h"
#include "heap.h"
#include "debugtools.h"
#include "tchar.h"
#include "winnt.h"
DEFAULT_DEBUG_CHANNEL
(
ddeml
)
DEFAULT_DEBUG_CHANNEL
(
ddeml
)
;
/* Has defined in atom.c file.
*/
...
...
dlls/wininet/http.c
View file @
5ab9d860
...
...
@@ -14,7 +14,6 @@
#include "debugtools.h"
#include "winerror.h"
#include "heap.h"
#include "tchar.h"
#include "winsock.h"
#include <sys/types.h>
...
...
@@ -970,35 +969,35 @@ INT HTTP_GetStdHeaderIndex(LPCSTR lpszField)
{
INT
index
=
-
1
;
if
(
!
_stri
cmp
(
lpszField
,
"Content-Length"
))
if
(
!
strcase
cmp
(
lpszField
,
"Content-Length"
))
index
=
HTTP_QUERY_CONTENT_LENGTH
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Status"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Status"
))
index
=
HTTP_QUERY_STATUS_CODE
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Content-Type"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Content-Type"
))
index
=
HTTP_QUERY_CONTENT_TYPE
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Last-Modified"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Last-Modified"
))
index
=
HTTP_QUERY_LAST_MODIFIED
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Location"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Location"
))
index
=
HTTP_QUERY_LOCATION
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Accept"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Accept"
))
index
=
HTTP_QUERY_ACCEPT
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Referer"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Referer"
))
index
=
HTTP_QUERY_REFERER
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Content-Transfer-Encoding"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Content-Transfer-Encoding"
))
index
=
HTTP_QUERY_CONTENT_TRANSFER_ENCODING
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Date"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Date"
))
index
=
HTTP_QUERY_DATE
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Server"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Server"
))
index
=
HTTP_QUERY_SERVER
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Connection"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Connection"
))
index
=
HTTP_QUERY_CONNECTION
;
else
if
(
!
_stri
cmp
(
lpszField
,
"ETag"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"ETag"
))
index
=
HTTP_QUERY_ETAG
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Accept-Ranges"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Accept-Ranges"
))
index
=
HTTP_QUERY_ACCEPT_RANGES
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Expires"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Expires"
))
index
=
HTTP_QUERY_EXPIRES
;
else
if
(
!
_stri
cmp
(
lpszField
,
"Mime-Version"
))
else
if
(
!
strcase
cmp
(
lpszField
,
"Mime-Version"
))
index
=
HTTP_QUERY_MIME_VERSION
;
else
{
...
...
@@ -1260,7 +1259,7 @@ INT HTTP_GetCustomHeaderIndex(LPWININETHTTPREQA lpwhr, LPCSTR lpszField)
for
(
index
=
0
;
index
<
lpwhr
->
nCustHeaders
;
index
++
)
{
if
(
!
_stri
cmp
(
lpwhr
->
pCustHeaders
[
index
].
lpszField
,
lpszField
))
if
(
!
strcase
cmp
(
lpwhr
->
pCustHeaders
[
index
].
lpszField
,
lpszField
))
break
;
}
...
...
dlls/wininet/internet.c
View file @
5ab9d860
...
...
@@ -22,7 +22,6 @@
#include "debugtools.h"
#include "winerror.h"
#include "winsock.h"
#include "tchar.h"
#include "heap.h"
#include "internet.h"
...
...
@@ -919,19 +918,19 @@ INTERNET_SCHEME GetInternetScheme(LPCSTR lpszScheme, INT nMaxCmp)
if
(
lpszScheme
==
NULL
)
return
INTERNET_SCHEME_UNKNOWN
;
if
(
!
_strni
cmp
(
"ftp"
,
lpszScheme
,
nMaxCmp
))
if
(
!
strncase
cmp
(
"ftp"
,
lpszScheme
,
nMaxCmp
))
return
INTERNET_SCHEME_FTP
;
else
if
(
!
_strni
cmp
(
"gopher"
,
lpszScheme
,
nMaxCmp
))
else
if
(
!
strncase
cmp
(
"gopher"
,
lpszScheme
,
nMaxCmp
))
return
INTERNET_SCHEME_GOPHER
;
else
if
(
!
_strni
cmp
(
"http"
,
lpszScheme
,
nMaxCmp
))
else
if
(
!
strncase
cmp
(
"http"
,
lpszScheme
,
nMaxCmp
))
return
INTERNET_SCHEME_HTTP
;
else
if
(
!
_strni
cmp
(
"https"
,
lpszScheme
,
nMaxCmp
))
else
if
(
!
strncase
cmp
(
"https"
,
lpszScheme
,
nMaxCmp
))
return
INTERNET_SCHEME_HTTPS
;
else
if
(
!
_strni
cmp
(
"file"
,
lpszScheme
,
nMaxCmp
))
else
if
(
!
strncase
cmp
(
"file"
,
lpszScheme
,
nMaxCmp
))
return
INTERNET_SCHEME_FILE
;
else
if
(
!
_strni
cmp
(
"news"
,
lpszScheme
,
nMaxCmp
))
else
if
(
!
strncase
cmp
(
"news"
,
lpszScheme
,
nMaxCmp
))
return
INTERNET_SCHEME_NEWS
;
else
if
(
!
_strni
cmp
(
"mailto"
,
lpszScheme
,
nMaxCmp
))
else
if
(
!
strncase
cmp
(
"mailto"
,
lpszScheme
,
nMaxCmp
))
return
INTERNET_SCHEME_MAILTO
;
else
return
INTERNET_SCHEME_UNKNOWN
;
...
...
dlls/winsock/async.c
View file @
5ab9d860
...
...
@@ -84,12 +84,11 @@
#include "winnt.h"
#include "heap.h"
#include "task.h"
#include "message.h"
#include "miscemu.h"
#include "ldt.h"
#include "wine/port.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
winsock
)
DEFAULT_DEBUG_CHANNEL
(
winsock
)
;
/* protoptypes of some functions in socket.c
*/
...
...
dlls/winsock/socket.c
View file @
5ab9d860
...
...
@@ -83,15 +83,13 @@
#include "winnt.h"
#include "heap.h"
#include "task.h"
#include "message.h"
#include "miscemu.h"
#include "wine/port.h"
#include "services.h"
#include "server.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
winsock
)
DEFAULT_DEBUG_CHANNEL
(
winsock
)
;
#define DEBUG_SOCKADDR 0
#define dump_sockaddr(a) \
...
...
files/change.c
View file @
5ab9d860
...
...
@@ -16,8 +16,6 @@
#include <time.h>
#include "winbase.h"
#include "winerror.h"
#include "process.h"
#include "thread.h"
#include "heap.h"
#include "server.h"
#include "debugtools.h"
...
...
files/dos_fs.c
View file @
5ab9d860
...
...
@@ -32,12 +32,11 @@
#include "msdos.h"
#include "syslevel.h"
#include "server.h"
#include "process.h"
#include "options.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
dosfs
)
DECLARE_DEBUG_CHANNEL
(
file
)
DEFAULT_DEBUG_CHANNEL
(
dosfs
)
;
DECLARE_DEBUG_CHANNEL
(
file
)
;
/* Define the VFAT ioctl to get both short and long file names */
/* FIXME: is it possible to get this to work on other systems? */
...
...
graphics/painting.c
View file @
5ab9d860
...
...
@@ -10,7 +10,6 @@
#include "dc.h"
#include "bitmap.h"
#include "heap.h"
#include "cache.h"
#include "region.h"
#include "path.h"
#include "debugtools.h"
...
...
include/ntddk.h
View file @
5ab9d860
...
...
@@ -990,6 +990,7 @@ DWORD WINAPI RtlIntegerToChar(DWORD x1,DWORD x2,DWORD x3,DWORD x4);
LPVOID
WINAPI
RtlNormalizeProcessParams
(
LPVOID
x
);
DWORD
WINAPI
RtlNtStatusToDosError
(
DWORD
error
);
BOOLEAN
WINAPI
RtlGetNtProductType
(
LPDWORD
type
);
PIMAGE_NT_HEADERS
WINAPI
RtlImageNtHeader
(
HMODULE
hModule
);
DWORD
WINAPI
RtlOpenCurrentUser
(
IN
ACCESS_MASK
DesiredAccess
,
...
...
include/ole.h
View file @
5ab9d860
...
...
@@ -273,12 +273,6 @@ OLESTATUS WINAPI OleCreateFromClip16(
LPCSTR
name
,
LPOLECLIENT
olecli
,
LHCLIENTDOC
hclientdoc
,
LPCSTR
xname
,
LPOLEOBJECT
*
lpoleob
,
UINT16
render
,
UINT16
clipformat
);
/* com functions */
void
WINAPI
CoFreeUnusedLibraries
(
void
);
HINSTANCE
WINAPI
CoLoadLibrary
(
LPOLESTR
lpszLibName
,
BOOL
bAutoFree
);
void
WINAPI
CoFreeUnusedLibraries
(
void
);
void
WINAPI
CoFreeAllLibraries
(
void
);
#ifdef __cplusplus
}
/*extern*/
#endif
...
...
include/wine/obj_base.h
View file @
5ab9d860
...
...
@@ -707,6 +707,8 @@ LPVOID WINAPI CoTaskMemRealloc(LPVOID ptr, ULONG size);
HRESULT
WINAPI
CoCreateGuid
(
GUID
*
pguid
);
HINSTANCE
WINAPI
CoLoadLibrary
(
LPOLESTR
lpszLibName
,
BOOL
bAutoFree
);
void
WINAPI
CoFreeAllLibraries
(
void
);
void
WINAPI
CoFreeLibrary
(
HINSTANCE
hLibrary
);
...
...
misc/comm.c
View file @
5ab9d860
...
...
@@ -63,7 +63,6 @@
#include "options.h"
#include "server.h"
#include "process.h"
#include "winerror.h"
#include "services.h"
#include "callback.h"
...
...
misc/main.c
View file @
5ab9d860
...
...
@@ -9,6 +9,7 @@
#include <locale.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#ifdef MALLOC_DEBUGGING
...
...
@@ -18,17 +19,12 @@
#include "winbase.h"
#include "winsock.h"
#include "heap.h"
#include "message.h"
#include "msdos.h"
#include "color.h"
#include "options.h"
#include "debugtools.h"
#include "debugdefs.h"
#include "module.h"
#include "version.h"
#include "winnls.h"
#include "console.h"
#include "gdi.h"
#include "user.h"
#include "windef.h"
#include "wingdi.h"
...
...
msdos/int09.c
View file @
5ab9d860
...
...
@@ -8,11 +8,10 @@
#include "wingdi.h"
#include "winuser.h"
#include "miscemu.h"
#include "input.h"
#include "debugtools.h"
#include "dosexe.h"
DEFAULT_DEBUG_CHANNEL
(
int
)
DEFAULT_DEBUG_CHANNEL
(
int
)
;
#define QUEUELEN 31
...
...
objects/bitmap.c
View file @
5ab9d860
...
...
@@ -14,7 +14,6 @@
#include "bitmap.h"
#include "heap.h"
#include "global.h"
#include "cursoricon.h"
#include "debugtools.h"
#include "wine/winuser16.h"
...
...
programs/notepad/search.c
View file @
5ab9d860
...
...
@@ -10,7 +10,7 @@
*
*/
#include <win
.h>
#include <windows
.h>
#define CHARSETSIZE 255
...
...
scheduler/synchro.c
View file @
5ab9d860
...
...
@@ -9,11 +9,9 @@
#include <sys/time.h>
#include <unistd.h>
#include "heap.h"
#include "process.h"
#include "thread.h"
#include "winerror.h"
#include "syslevel.h"
#include "message.h"
#include "server.h"
/***********************************************************************
...
...
windows/caret.c
View file @
5ab9d860
...
...
@@ -6,15 +6,15 @@
*/
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/wingdi16.h"
#include "wine/winuser16.h"
#include "module.h"
#include "win.h"
#include "winuser.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
caret
)
DEFAULT_DEBUG_CHANNEL
(
caret
)
;
typedef
struct
{
...
...
windows/cursoricon.c
View file @
5ab9d860
...
...
@@ -37,7 +37,7 @@
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "heap.h"
#include "
color
.h"
#include "
palette
.h"
#include "bitmap.h"
#include "cursoricon.h"
#include "global.h"
...
...
windows/queue.c
View file @
5ab9d860
...
...
@@ -11,7 +11,6 @@
#include "winerror.h"
#include "wine/winbase16.h"
#include "wine/winuser16.h"
#include "miscemu.h"
#include "syslevel.h"
#include "module.h"
#include "queue.h"
...
...
windows/x11drv/wnd.c
View file @
5ab9d860
...
...
@@ -18,7 +18,6 @@
#include <string.h>
#include "bitmap.h"
#include "color.h"
#include "debugtools.h"
#include "dce.h"
#include "dc.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