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
0c15360a
Commit
0c15360a
authored
Sep 10, 2006
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removes all unnecessary WINE_DEFAULT_DEBUG_CHANNEL and respective wine/debug.h includes.
parent
08e12600
Show whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
2 additions
and
63 deletions
+2
-63
fci.c
dlls/cabinet/fci.c
+0
-2
bidi.c
dlls/gdi/bidi.c
+1
-1
bitblt.c
dlls/gdi/enhmfdrv/bitblt.c
+0
-2
ui.c
dlls/gphoto2.ds/ui.c
+0
-2
imagehlp_main.c
dlls/imagehlp/imagehlp_main.c
+0
-2
atom.c
dlls/kernel/atom.c
+0
-4
kernel16.c
dlls/kernel/kernel16.c
+0
-3
icc.c
dlls/mscms/icc.c
+0
-3
tokenize.c
dlls/msi/tokenize.c
+0
-3
ctype.c
dlls/msvcrt/ctype.c
+0
-3
browsr.c
dlls/netapi32/browsr.c
+0
-3
nbnamecache.c
dlls/netapi32/nbnamecache.c
+0
-3
wcstring.c
dlls/ntdll/wcstring.c
+0
-4
implglue.c
dlls/rsaenh/implglue.c
+0
-3
driver.c
dlls/user/driver.c
+1
-3
lstr.c
dlls/user/lstr.c
+0
-4
stylemap.c
dlls/uxtheme/stylemap.c
+0
-4
encode.c
dlls/wineps.drv/encode.c
+0
-3
clipping.c
dlls/winex11.drv/clipping.c
+0
-3
codepage.c
dlls/winex11.drv/codepage.c
+0
-3
wspool.c
dlls/winspool.drv/wspool.c
+0
-2
protocol.c
dlls/wsock32/protocol.c
+0
-3
No files found.
dlls/cabinet/fci.c
View file @
0c15360a
...
...
@@ -64,8 +64,6 @@ There is still some work to be done:
if (B) SetLastError(B); } while(0)
WINE_DEFAULT_DEBUG_CHANNEL
(
cabinet
);
typedef
struct
{
cab_UBYTE
signature
[
4
];
/* !CAB for unfinished cabinets else MSCF */
cab_ULONG
reserved1
;
...
...
dlls/gdi/bidi.c
View file @
0c15360a
...
...
@@ -55,11 +55,11 @@ BOOL BIDI_Reorder(
UINT
*
lpOrder
/* [out] Logical -> Visual order map */
)
{
#ifdef HAVE_ICU
TRACE
(
"%s, %d, 0x%08lx lpOutString=%p, lpOrder=%p
\n
"
,
debugstr_wn
(
lpString
,
uCount
),
uCount
,
dwFlags
,
lpOutString
,
lpOrder
);
#ifdef HAVE_ICU
if
((
dwFlags
&
GCP_REORDER
)
!=
0
)
{
UBiDi
*
bidi
;
UErrorCode
err
=
0
;
...
...
dlls/gdi/enhmfdrv/bitblt.c
View file @
0c15360a
...
...
@@ -28,8 +28,6 @@
#include "enhmetafiledrv.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
enhmetafile
);
BOOL
EMFDRV_PatBlt
(
PHYSDEV
dev
,
INT
left
,
INT
top
,
INT
width
,
INT
height
,
DWORD
rop
)
{
...
...
dlls/gphoto2.ds/ui.c
View file @
0c15360a
...
...
@@ -38,8 +38,6 @@
#include "wine/debug.h"
#include "resource.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
twain
);
static
HBITMAP
static_bitmap
;
static
INT_PTR
CALLBACK
ConnectingProc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
...
...
dlls/imagehlp/imagehlp_main.c
View file @
0c15360a
...
...
@@ -26,8 +26,6 @@
#include "winerror.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
imagehlp
);
/**********************************************************************/
HANDLE
IMAGEHLP_hHeap
=
NULL
;
...
...
dlls/kernel/atom.c
View file @
0c15360a
...
...
@@ -38,10 +38,6 @@
#include "wine/unicode.h"
#include "kernel_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
atom
);
#define MAX_ATOM_LEN 255
/******************************************************************
...
...
dlls/kernel/kernel16.c
View file @
0c15360a
...
...
@@ -28,9 +28,6 @@
#include "toolhelp.h"
#include "kernel_private.h"
#include "kernel16_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
kernel
);
/**************************************************************************
* DllEntryPoint (KERNEL.669)
...
...
dlls/mscms/icc.c
View file @
0c15360a
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/debug.h"
#include <stdarg.h>
...
...
@@ -34,8 +33,6 @@
#include "mscms_priv.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mscms
);
#ifdef HAVE_LCMS
static
inline
void
MSCMS_adjust_endianess32
(
ULONG
*
ptr
)
...
...
dlls/msi/tokenize.c
View file @
0c15360a
...
...
@@ -22,13 +22,10 @@
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "query.h"
#include "sql.tab.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msi
);
/*
** All the keywords of the SQL language are stored as in a hash
** table composed of instances of the following structure.
...
...
dlls/msvcrt/ctype.c
View file @
0c15360a
...
...
@@ -20,9 +20,6 @@
#include "msvcrt.h"
#include "winnls.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* Some abbreviations to make the following table readable */
#define _C_ MSVCRT__CONTROL
...
...
dlls/netapi32/browsr.c
View file @
0c15360a
...
...
@@ -26,9 +26,6 @@
#include "lmcons.h"
#include "lmbrowsr.h"
#include "lmshare.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
netapi32
);
/************************************************************
* I_BrowserSetNetlogonState (NETAPI32.@)
...
...
dlls/netapi32/nbnamecache.c
View file @
0c15360a
...
...
@@ -21,12 +21,9 @@
#include "config.h"
#include "wine/port.h"
#include "wine/debug.h"
#include "nbnamecache.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
netbios
);
typedef
struct
_NBNameCacheNode
{
DWORD
expireTime
;
...
...
dlls/ntdll/wcstring.c
View file @
0c15360a
...
...
@@ -32,10 +32,6 @@
#include "windef.h"
#include "winternl.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ntdll
);
/*********************************************************************
* _wcsicmp (NTDLL.@)
...
...
dlls/rsaenh/implglue.c
View file @
0c15360a
...
...
@@ -24,7 +24,6 @@
#include "wine/port.h"
#include "wine/library.h"
#include "wine/debug.h"
#include "windef.h"
#include "wincrypt.h"
...
...
@@ -33,8 +32,6 @@
#include <stdio.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
crypt
);
/* Function prototypes copied from dlls/advapi32/crypt_md4.c */
VOID
WINAPI
MD4Init
(
MD4_CTX
*
ctx
);
VOID
WINAPI
MD4Update
(
MD4_CTX
*
ctx
,
const
unsigned
char
*
buf
,
unsigned
int
len
);
...
...
dlls/user/driver.c
View file @
0c15360a
...
...
@@ -23,11 +23,9 @@
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "user_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
user
);
#include "user_private.h"
static
const
USER_DRIVER
null_driver
,
lazy_load_driver
;
...
...
dlls/user/lstr.c
View file @
0c15360a
...
...
@@ -38,10 +38,6 @@
#include "wine/unicode.h"
#include "excpt.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
resource
);
/***********************************************************************
* CharNextA (USER32.@)
...
...
dlls/uxtheme/stylemap.c
View file @
0c15360a
...
...
@@ -29,10 +29,6 @@
#define TMT_ENUM 200
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
uxtheme
);
typedef
struct
_MSSTYLES_PROPERTY_MAP
{
WORD
dwPrimitiveType
;
WORD
dwPropertyID
;
...
...
dlls/wineps.drv/encode.c
View file @
0c15360a
...
...
@@ -22,9 +22,6 @@
#include <string.h>
#include "psdrv.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
psdrv
);
DWORD
RLE_encode
(
BYTE
*
in_buf
,
DWORD
len
,
BYTE
*
out_buf
)
{
...
...
dlls/winex11.drv/clipping.c
View file @
0c15360a
...
...
@@ -23,9 +23,6 @@
#include <stdio.h>
#include "x11drv.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
x11drv
);
/***********************************************************************
* X11DRV_GetRegionData
...
...
dlls/winex11.drv/codepage.c
View file @
0c15360a
...
...
@@ -27,9 +27,6 @@
#include "winbase.h"
#include "winnls.h"
#include "x11font.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
text
);
/***********************************************************************
* IsLegalDBCSChar for cp932/936/949/950/euc
...
...
dlls/winspool.drv/wspool.c
View file @
0c15360a
...
...
@@ -28,9 +28,7 @@
#include "wingdi.h"
#include "winspool.h"
#include "wspool.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
winspool
);
HINSTANCE
WINSPOOL_hInstance
=
NULL
;
/******************************************************************************
...
...
dlls/wsock32/protocol.c
View file @
0c15360a
...
...
@@ -38,9 +38,6 @@
#include "winsock2.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
winsock
);
/*****************************************************************************
* inet_network [WSOCK32.1100]
...
...
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