Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
bedc52ae
Commit
bedc52ae
authored
Jan 03, 2005
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Jan 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debug fixes and cleanup.
parent
760096d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
13 deletions
+10
-13
dmutils.c
dlls/dmband/dmutils.c
+10
-13
No files found.
dlls/dmband/dmutils.c
View file @
bedc52ae
...
...
@@ -237,13 +237,13 @@ HRESULT IDirectMusicUtils_IPersistStream_ParseReference (LPPERSISTSTREAM iface,
const
char
*
resolve_STREAM_SEEK
(
DWORD
flag
)
{
switch
(
flag
)
{
case
STREAM_SEEK_SET
:
return
wine_dbg_sprintf
(
"STREAM_SEEK_SET"
)
;
return
"STREAM_SEEK_SET"
;
case
STREAM_SEEK_CUR
:
return
wine_dbg_sprintf
(
"STREAM_SEEK_CUR"
)
;
return
"STREAM_SEEK_CUR"
;
case
STREAM_SEEK_END
:
return
wine_dbg_sprintf
(
"STREAM_SEEK_END"
)
;
return
"STREAM_SEEK_END"
;
default:
return
wine_dbg_sprintf
(
"()"
)
;
return
"()"
;
}
}
...
...
@@ -697,10 +697,9 @@ const char *debugstr_DMUS_OBJECTDESC (LPDMUS_OBJECTDESC pDesc) {
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_MEMORY
)
ptr
+=
sprintf
(
ptr
,
" - llMemLength = %lli
\n
- pbMemData = %p
\n
"
,
pDesc
->
llMemLength
,
pDesc
->
pbMemData
);
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_STREAM
)
ptr
+=
sprintf
(
ptr
,
" - pStream = %p
\n
"
,
pDesc
->
pStream
);
ptr
=
&
buffer
[
0
];
return
ptr
;
return
wine_dbg_sprintf
(
"%s"
,
buffer
);
}
else
{
return
wine_dbg_sprintf
(
"(NULL)"
)
;
return
"(NULL)"
;
}
}
...
...
@@ -730,10 +729,9 @@ const char *debugstr_DMUS_IO_CONTAINER_HEADER (LPDMUS_IO_CONTAINER_HEADER pHeade
ptr
+=
sprintf
(
ptr
,
"DMUS_IO_CONTAINER_HEADER (%p):
\n
"
,
pHeader
);
ptr
+=
sprintf
(
ptr
,
" - dwFlags = %s
\n
"
,
debugstr_DMUS_CONTAINER_FLAGS
(
pHeader
->
dwFlags
));
ptr
=
&
buffer
[
0
];
return
ptr
;
return
wine_dbg_sprintf
(
"%s"
,
buffer
);
}
else
{
return
wine_dbg_sprintf
(
"(NULL)"
)
;
return
"(NULL)"
;
}
}
...
...
@@ -747,9 +745,8 @@ const char *debugstr_DMUS_IO_CONTAINED_OBJECT_HEADER (LPDMUS_IO_CONTAINED_OBJECT
ptr
+=
sprintf
(
ptr
,
" - ckid = %s
\n
"
,
debugstr_fourcc
(
pHeader
->
ckid
));
ptr
+=
sprintf
(
ptr
,
" - fccType = %s
\n
"
,
debugstr_fourcc
(
pHeader
->
fccType
));
ptr
=
&
buffer
[
0
];
return
ptr
;
return
wine_dbg_sprintf
(
"%s"
,
buffer
);
}
else
{
return
wine_dbg_sprintf
(
"(NULL)"
)
;
return
"(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