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
0dd3655f
Commit
0dd3655f
authored
Jan 29, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed debugstr.h.
parent
8bc1d837
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
13 additions
and
54 deletions
+13
-54
avifile.c
dlls/avifil32/avifile.c
+0
-1
misc.c
dlls/ntdll/misc.c
+1
-2
nt.c
dlls/ntdll/nt.c
+1
-2
sec.c
dlls/ntdll/sec.c
+1
-2
sync.c
dlls/ntdll/sync.c
+0
-1
snoop.c
if1632/snoop.c
+1
-2
debugstr.h
include/debugstr.h
+0
-28
vartest.c
libtest/vartest.c
+1
-1
resource.c
loader/resource.c
+2
-3
text.c
objects/text.c
+1
-2
relay386.c
relay32/relay386.c
+1
-2
snoop.c
relay32/snoop.c
+1
-2
utthunk.c
relay32/utthunk.c
+1
-2
newfns.c
win32/newfns.c
+2
-3
msgbox.c
windows/msgbox.c
+0
-1
No files found.
dlls/avifil32/avifile.c
View file @
0dd3655f
...
...
@@ -11,7 +11,6 @@
#include "driver.h"
#include "mmsystem.h"
#include "winerror.h"
#include "debugstr.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
avifile
)
...
...
dlls/ntdll/misc.c
View file @
0dd3655f
...
...
@@ -5,11 +5,10 @@
#include "config.h"
#include "debugstr.h"
#include "debugtools.h"
#include "ntdll_misc.h"
DEFAULT_DEBUG_CHANNEL
(
ntdll
)
DEFAULT_DEBUG_CHANNEL
(
ntdll
)
;
void
dump_ObjectAttributes
(
POBJECT_ATTRIBUTES
oa
)
{
...
...
dlls/ntdll/nt.c
View file @
0dd3655f
...
...
@@ -11,13 +11,12 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "debugstr.h"
#include "debugtools.h"
#include "ntddk.h"
#include "ntdll_misc.h"
DEFAULT_DEBUG_CHANNEL
(
ntdll
)
DEFAULT_DEBUG_CHANNEL
(
ntdll
)
;
/*
* Timer object
...
...
dlls/ntdll/sec.c
View file @
0dd3655f
...
...
@@ -16,7 +16,6 @@
#include "file.h"
#include "heap.h"
#include "winnls.h"
#include "debugstr.h"
#include "debugtools.h"
#include "winerror.h"
#include "stackframe.h"
...
...
@@ -24,7 +23,7 @@
#include "ntddk.h"
#include "winreg.h"
DEFAULT_DEBUG_CHANNEL
(
ntdll
)
DEFAULT_DEBUG_CHANNEL
(
ntdll
)
;
#define NT_SUCCESS(status) (status == STATUS_SUCCESS)
...
...
dlls/ntdll/sync.c
View file @
0dd3655f
...
...
@@ -6,7 +6,6 @@
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "debugstr.h"
#include "debugtools.h"
#include "winerror.h"
...
...
if1632/snoop.c
View file @
0dd3655f
...
...
@@ -14,10 +14,9 @@
#include "stackframe.h"
#include "builtin16.h"
#include "snoop.h"
#include "debugstr.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
snoop
)
DEFAULT_DEBUG_CHANNEL
(
snoop
)
;
#ifdef __i386__
...
...
include/debugstr.h
deleted
100644 → 0
View file @
8bc1d837
#ifndef __WINE_DEBUGSTR_H
#define __WINE_DEBUGSTR_H
#include "windef.h"
/* These function return a printable version of a string, including
quotes. The string will be valid for some time, but not indefinitely
as strings are re-used. */
struct
_GUID
;
extern
LPSTR
debugstr_an
(
LPCSTR
s
,
int
n
);
extern
LPSTR
debugstr_a
(
LPCSTR
s
);
extern
LPSTR
debugstr_wn
(
LPCWSTR
s
,
int
n
);
extern
LPSTR
debugstr_w
(
LPCWSTR
s
);
extern
LPSTR
debugres_a
(
LPCSTR
res
);
extern
LPSTR
debugres_w
(
LPCWSTR
res
);
extern
LPSTR
debugstr_guid
(
const
struct
_GUID
*
id
);
extern
void
debug_dumpstr
(
LPCSTR
s
);
extern
LPSTR
debugstr_hex_dump
(
const
void
*
ptr
,
int
len
);
#ifdef __GNUC__
extern
int
dbg_printf
(
const
char
*
format
,
...)
__attribute__
((
format
(
printf
,
1
,
2
)));
#else
extern
int
dbg_printf
(
const
char
*
format
,
...);
#endif
#endif
/* __WINE_DEBUGSTR_H */
libtest/vartest.c
View file @
0dd3655f
...
...
@@ -57,7 +57,7 @@
#include <windef.h>
#ifdef __unix__
#include <debug
str
.h>
#include <debug
tools
.h>
extern
LPWSTR
HEAP_strdupAtoW
(
HANDLE
heap
,
DWORD
flags
,
LPCSTR
str
);
#endif
...
...
loader/resource.c
View file @
0dd3655f
...
...
@@ -30,11 +30,10 @@
#include "debugtools.h"
#include "libres.h"
#include "winerror.h"
#include "debugstr.h"
#include "winnls.h"
DEFAULT_DEBUG_CHANNEL
(
resource
)
DECLARE_DEBUG_CHANNEL
(
accel
)
DEFAULT_DEBUG_CHANNEL
(
resource
)
;
DECLARE_DEBUG_CHANNEL
(
accel
)
;
extern
WORD
WINE_LanguageId
;
...
...
objects/text.c
View file @
0dd3655f
...
...
@@ -16,9 +16,8 @@
#include "heap.h"
#include "debugtools.h"
#include "cache.h"
#include "debugstr.h"
DEFAULT_DEBUG_CHANNEL
(
text
)
DEFAULT_DEBUG_CHANNEL
(
text
)
;
#define TAB 9
#define LF 10
...
...
relay32/relay386.c
View file @
0dd3655f
...
...
@@ -12,11 +12,10 @@
#include "selectors.h"
#include "stackframe.h"
#include "syslevel.h"
#include "debugstr.h"
#include "main.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
relay
)
DEFAULT_DEBUG_CHANNEL
(
relay
)
;
char
**
debug_relay_excludelist
=
NULL
,
**
debug_relay_includelist
=
NULL
;
...
...
relay32/snoop.c
View file @
0dd3655f
...
...
@@ -17,10 +17,9 @@
#include "peexe.h"
#include "selectors.h"
#include "stackframe.h"
#include "debugstr.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
snoop
)
DEFAULT_DEBUG_CHANNEL
(
snoop
)
;
char
**
debug_snoop_excludelist
=
NULL
,
**
debug_snoop_includelist
=
NULL
;
...
...
relay32/utthunk.c
View file @
0dd3655f
...
...
@@ -12,9 +12,8 @@
#include "callback.h"
#include "process.h"
#include "debugtools.h"
#include "debugstr.h"
DEFAULT_DEBUG_CHANNEL
(
thunk
)
DEFAULT_DEBUG_CHANNEL
(
thunk
)
;
#include "pshpack1.h"
...
...
win32/newfns.c
View file @
0dd3655f
...
...
@@ -14,10 +14,9 @@ at a later date. */
#include "winerror.h"
#include "heap.h"
#include "debugtools.h"
#include "debugstr.h"
DEFAULT_DEBUG_CHANNEL
(
win32
)
DECLARE_DEBUG_CHANNEL
(
debug
)
DEFAULT_DEBUG_CHANNEL
(
win32
)
;
DECLARE_DEBUG_CHANNEL
(
debug
)
;
/****************************************************************************
...
...
windows/msgbox.c
View file @
0dd3655f
...
...
@@ -12,7 +12,6 @@
#include "heap.h"
#include "ldt.h"
#include "debugtools.h"
#include "debugstr.h"
#include "tweak.h"
DEFAULT_DEBUG_CHANNEL
(
dialog
)
...
...
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