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
02d6dae4
Commit
02d6dae4
authored
Jan 26, 2020
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Get rid of the DMUSIC_PRIVATE_PCHANNEL typedef.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
608ac8e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
11 deletions
+5
-11
dmime_private.h
dlls/dmime/dmime_private.h
+0
-10
performance.c
dlls/dmime/performance.c
+5
-1
No files found.
dlls/dmime/dmime_private.h
View file @
02d6dae4
...
...
@@ -102,16 +102,6 @@ typedef struct _DMUS_PRIVATE_TEMPO_PLAY_STATE {
DWORD
dummy
;
}
DMUS_PRIVATE_TEMPO_PLAY_STATE
,
*
LPDMUS_PRIVATE_TEMPO_PLAY_STATE
;
/* some sort of aux. performance channel: as far as i can understand, these are
used to represent a particular midi channel in particular group at particular
group; so all we need to do is to fill it with parent port, group and midi
channel ? */
typedef
struct
DMUSIC_PRIVATE_PCHANNEL_
{
DWORD
channel
;
/* map to this channel... */
DWORD
group
;
/* ... in this group ... */
IDirectMusicPort
*
port
;
/* ... at this port */
}
DMUSIC_PRIVATE_PCHANNEL
,
*
LPDMUSIC_PRIVATE_PCHANNEL
;
/**********************************************************************
* Dll lifetime tracking declaration for dmime.dll
*/
...
...
dlls/dmime/performance.c
View file @
02d6dae4
...
...
@@ -27,7 +27,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(dmime);
struct
pchannel_block
{
DWORD
block_num
;
/* Block 0 is PChannels 0-15, Block 1 is PChannels 16-31, etc */
DMUSIC_PRIVATE_PCHANNEL
pchannel
[
16
];
struct
{
DWORD
channel
;
/* MIDI channel */
DWORD
group
;
/* MIDI group */
IDirectMusicPort
*
port
;
}
pchannel
[
16
];
struct
wine_rb_entry
entry
;
};
...
...
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