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
1ca7f9a3
Commit
1ca7f9a3
authored
Dec 13, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmloader: Simplify tracing of the DMUS_CONTAINER_NOLOADS flag.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8320b400
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
debug.c
dlls/dmloader/debug.c
+4
-11
No files found.
dlls/dmloader/debug.c
View file @
1ca7f9a3
...
...
@@ -62,14 +62,6 @@ static const char* debugstr_flags (DWORD flags, const flag_info* names, size_t n
return
ptr
;
}
/* dump DMUS_CONTAINER flags */
static
const
char
*
debugstr_DMUS_CONTAINER_FLAGS
(
DWORD
flagmask
)
{
static
const
flag_info
flags
[]
=
{
FE
(
DMUS_CONTAINER_NOLOADS
)
};
return
debugstr_flags
(
flagmask
,
flags
,
ARRAY_SIZE
(
flags
));
}
/* dump DMUS_CONTAINED_OBJF flags */
static
const
char
*
debugstr_DMUS_CONTAINED_OBJF_FLAGS
(
DWORD
flagmask
)
{
static
const
flag_info
flags
[]
=
{
...
...
@@ -81,10 +73,11 @@ static const char *debugstr_DMUS_CONTAINED_OBJF_FLAGS (DWORD flagmask) {
const
char
*
debugstr_DMUS_IO_CONTAINER_HEADER
(
LPDMUS_IO_CONTAINER_HEADER
pHeader
)
{
if
(
pHeader
)
{
char
buffer
[
1024
],
*
ptr
=
buffer
;
ptr
+=
sprintf
(
ptr
,
"DMUS_IO_CONTAINER_HEADER (%p):"
,
pHeader
);
ptr
+=
sprintf
(
ptr
,
"
\n
- dwFlags = %s"
,
debugstr_DMUS_CONTAINER_FLAGS
(
pHeader
->
dwFlags
));
ptr
+=
sprintf
(
ptr
,
"
\n
- dwFlags = %#x%s"
,
pHeader
->
dwFlags
,
pHeader
->
dwFlags
&
DMUS_CONTAINER_NOLOADS
?
" (DMUS_CONTAINER_NOLOADS)"
:
""
);
return
wine_dbg_sprintf
(
"%s"
,
buffer
);
}
else
{
return
wine_dbg_sprintf
(
"(NULL)"
);
...
...
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