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
b9a50481
Commit
b9a50481
authored
Nov 26, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmstyle: Move 3 structs where they are used and get rid of typedefs.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
979e3069
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
32 deletions
+30
-32
dmstyle_private.h
dlls/dmstyle/dmstyle_private.h
+0
-23
style.c
dlls/dmstyle/style.c
+30
-9
No files found.
dlls/dmstyle/dmstyle_private.h
View file @
b9a50481
...
...
@@ -55,29 +55,6 @@ extern HRESULT WINAPI create_dmstyletrack(REFIID riid, void **ret_iface) DECLSPE
/*****************************************************************************
* Auxiliary definitions
*/
typedef
struct
_DMUS_PRIVATE_STYLE_BAND
{
struct
list
entry
;
/* for listing elements */
IDirectMusicBand
*
pBand
;
}
DMUS_PRIVATE_STYLE_BAND
,
*
LPDMUS_PRIVATE_STYLE_BAND
;
typedef
struct
_DMUS_PRIVATE_STYLE_PARTREF_ITEM
{
struct
list
entry
;
/* for listing elements */
DMUS_OBJECTDESC
desc
;
DMUS_IO_PARTREF
part_ref
;
}
DMUS_PRIVATE_STYLE_PARTREF_ITEM
,
*
LPDMUS_PRIVATE_STYLE_PARTREF_ITEM
;
typedef
struct
_DMUS_PRIVATE_STYLE_MOTIF
{
struct
list
entry
;
/* for listing elements */
DWORD
dwRhythm
;
DMUS_IO_PATTERN
pattern
;
DMUS_OBJECTDESC
desc
;
/** optional for motifs */
DMUS_IO_MOTIFSETTINGS
settings
;
IDirectMusicBand
*
pBand
;
struct
list
Items
;
}
DMUS_PRIVATE_STYLE_MOTIF
,
*
LPDMUS_PRIVATE_STYLE_MOTIF
;
typedef
struct
_DMUS_PRIVATE_STYLE_ITEM
{
struct
list
entry
;
/* for listing elements */
DWORD
dwTimeStamp
;
...
...
dlls/dmstyle/style.c
View file @
b9a50481
...
...
@@ -20,10 +20,33 @@
#include "dmstyle_private.h"
#include "dmobject.h"
#include "wine/heap.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dmstyle
);
WINE_DECLARE_DEBUG_CHANNEL
(
dmfile
);
struct
style_band
{
struct
list
entry
;
IDirectMusicBand
*
pBand
;
};
struct
style_partref_item
{
struct
list
entry
;
DMUS_OBJECTDESC
desc
;
DMUS_IO_PARTREF
part_ref
;
};
struct
style_motif
{
struct
list
entry
;
DWORD
dwRhythm
;
DMUS_IO_PATTERN
pattern
;
DMUS_OBJECTDESC
desc
;
/** optional for motifs */
DMUS_IO_MOTIFSETTINGS
settings
;
IDirectMusicBand
*
pBand
;
struct
list
Items
;
};
/*****************************************************************************
* IDirectMusicStyleImpl implementation
*/
...
...
@@ -283,14 +306,13 @@ static HRESULT load_band(IStream *pClonedStream, IDirectMusicBand **ppBand)
}
static
HRESULT
parse_part_ref_list
(
DMUS_PRIVATE_CHUNK
*
pChunk
,
IStream
*
pStm
,
DMUS_PRIVATE_STYLE_MOTIF
*
pNewMotif
)
struct
style_motif
*
pNewMotif
)
{
HRESULT
hr
=
E_FAIL
;
DMUS_PRIVATE_CHUNK
Chunk
;
DWORD
ListSize
[
3
],
ListCount
[
3
];
LARGE_INTEGER
liMove
;
/* used when skipping chunks */
LPDMUS_PRIVATE_STYLE_PARTREF_ITEM
pNewItem
=
NULL
;
struct
style_partref_item
*
pNewItem
=
NULL
;
if
(
pChunk
->
fccID
!=
DMUS_FOURCC_PARTREF_LIST
)
{
...
...
@@ -308,7 +330,7 @@ static HRESULT parse_part_ref_list(DMUS_PRIVATE_CHUNK *pChunk, IStream *pStm,
switch
(
Chunk
.
fccID
)
{
case
DMUS_FOURCC_PARTREF_CHUNK
:
{
TRACE_
(
dmfile
)(
": PartRef chunk
\n
"
);
pNewItem
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
DMUS_PRIVATE_STYLE_PARTREF_ITEM
));
pNewItem
=
heap_alloc_zero
(
sizeof
(
*
pNewItem
));
if
(
!
pNewItem
)
{
ERR
(
": no more memory
\n
"
);
return
E_OUTOFMEMORY
;
...
...
@@ -514,9 +536,8 @@ static HRESULT parse_pattern_list(IDirectMusicStyle8Impl *This, DMUS_PRIVATE_CHU
DMUS_PRIVATE_CHUNK
Chunk
;
DWORD
ListSize
[
3
],
ListCount
[
3
];
LARGE_INTEGER
liMove
;
/* used when skipping chunks */
IDirectMusicBand
*
pBand
=
NULL
;
LPDMUS_PRIVATE_STYLE_MOTIF
pNewMotif
=
NULL
;
struct
style_motif
*
pNewMotif
=
NULL
;
if
(
pChunk
->
fccID
!=
DMUS_FOURCC_PATTERN_LIST
)
{
ERR_
(
dmfile
)(
": %s chunk should be a PATTERN list
\n
"
,
debugstr_fourcc
(
pChunk
->
fccID
));
...
...
@@ -534,7 +555,7 @@ static HRESULT parse_pattern_list(IDirectMusicStyle8Impl *This, DMUS_PRIVATE_CHU
case
DMUS_FOURCC_PATTERN_CHUNK
:
{
TRACE_
(
dmfile
)(
": Pattern chunk
\n
"
);
/** alloc new motif entry */
pNewMotif
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
DMUS_PRIVATE_STYLE_MOTIF
));
pNewMotif
=
heap_alloc_zero
(
sizeof
(
*
pNewMotif
));
if
(
NULL
==
pNewMotif
)
{
ERR
(
": no more memory
\n
"
);
return
E_OUTOFMEMORY
;
...
...
@@ -715,7 +736,7 @@ static HRESULT parse_style_form(IDirectMusicStyle8Impl *This, DMUS_PRIVATE_CHUNK
switch
(
Chunk
.
fccID
)
{
case
DMUS_FOURCC_BAND_FORM
:
{
LPSTREAM
pClonedStream
=
NULL
;
LPDMUS_PRIVATE_STYLE_BAND
pNewBand
;
struct
style_band
*
pNewBand
;
TRACE_
(
dmfile
)(
": BAND RIFF
\n
"
);
...
...
@@ -732,7 +753,7 @@ static HRESULT parse_style_form(IDirectMusicStyle8Impl *This, DMUS_PRIVATE_CHUNK
}
IStream_Release
(
pClonedStream
);
pNewBand
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
DMUS_PRIVATE_STYLE_BAND
));
pNewBand
=
heap_alloc_zero
(
sizeof
(
*
pNewBand
));
if
(
NULL
==
pNewBand
)
{
ERR
(
": no more memory
\n
"
);
return
E_OUTOFMEMORY
;
...
...
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