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
a8424546
Commit
a8424546
authored
Apr 02, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Apr 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Move struct IDirectMusicPerformance8Impl to the c file.
parent
2259da71
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
42 deletions
+32
-42
dmime_private.h
dlls/dmime/dmime_private.h
+0
-42
performance.c
dlls/dmime/performance.c
+32
-0
No files found.
dlls/dmime/dmime_private.h
View file @
a8424546
...
...
@@ -46,7 +46,6 @@
/*****************************************************************************
* Interfaces
*/
typedef
struct
IDirectMusicPerformance8Impl
IDirectMusicPerformance8Impl
;
typedef
struct
IDirectMusicSegment8Impl
IDirectMusicSegment8Impl
;
typedef
struct
IDirectMusicSegmentState8Impl
IDirectMusicSegmentState8Impl
;
typedef
struct
IDirectMusicGraphImpl
IDirectMusicGraphImpl
;
...
...
@@ -124,47 +123,6 @@ typedef struct DMUSIC_PRIVATE_PCHANNEL_ {
}
DMUSIC_PRIVATE_PCHANNEL
,
*
LPDMUSIC_PRIVATE_PCHANNEL
;
/*****************************************************************************
* IDirectMusicPerformance8Impl implementation structure
*/
struct
IDirectMusicPerformance8Impl
{
/* IUnknown fields */
IDirectMusicPerformance8
IDirectMusicPerformance8_iface
;
LONG
ref
;
/* IDirectMusicPerformanceImpl fields */
IDirectMusic8
*
pDirectMusic
;
IDirectSound
*
pDirectSound
;
IDirectMusicGraph
*
pToolGraph
;
DMUS_AUDIOPARAMS
pParams
;
/* global parameters */
BOOL
fAutoDownload
;
char
cMasterGrooveLevel
;
float
fMasterTempo
;
long
lMasterVolume
;
/* performance channels */
DMUSIC_PRIVATE_PCHANNEL
PChannel
[
32
];
/* IDirectMusicPerformance8Impl fields */
IDirectMusicAudioPath
*
pDefaultPath
;
HANDLE
hNotification
;
REFERENCE_TIME
rtMinimum
;
REFERENCE_TIME
rtLatencyTime
;
DWORD
dwBumperLength
;
DWORD
dwPrepareTime
;
/** Message Processing */
HANDLE
procThread
;
DWORD
procThreadId
;
REFERENCE_TIME
procThreadStartTime
;
BOOL
procThreadTicStarted
;
CRITICAL_SECTION
safe
;
struct
DMUS_PMSGItem
*
head
;
struct
DMUS_PMSGItem
*
imm_head
;
};
/*****************************************************************************
* IDirectMusicSegment8Impl implementation structure
*/
struct
IDirectMusicSegment8Impl
{
...
...
dlls/dmime/performance.c
View file @
a8424546
...
...
@@ -22,6 +22,38 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
dmime
);
typedef
struct
IDirectMusicPerformance8Impl
{
IDirectMusicPerformance8
IDirectMusicPerformance8_iface
;
LONG
ref
;
/* IDirectMusicPerformanceImpl fields */
IDirectMusic8
*
pDirectMusic
;
IDirectSound
*
pDirectSound
;
IDirectMusicGraph
*
pToolGraph
;
DMUS_AUDIOPARAMS
pParams
;
/* global parameters */
BOOL
fAutoDownload
;
char
cMasterGrooveLevel
;
float
fMasterTempo
;
long
lMasterVolume
;
/* performance channels */
DMUSIC_PRIVATE_PCHANNEL
PChannel
[
32
];
/* IDirectMusicPerformance8Impl fields */
IDirectMusicAudioPath
*
pDefaultPath
;
HANDLE
hNotification
;
REFERENCE_TIME
rtMinimum
;
REFERENCE_TIME
rtLatencyTime
;
DWORD
dwBumperLength
;
DWORD
dwPrepareTime
;
/** Message Processing */
HANDLE
procThread
;
DWORD
procThreadId
;
REFERENCE_TIME
procThreadStartTime
;
BOOL
procThreadTicStarted
;
CRITICAL_SECTION
safe
;
struct
DMUS_PMSGItem
*
head
;
struct
DMUS_PMSGItem
*
imm_head
;
}
IDirectMusicPerformance8Impl
;
typedef
struct
DMUS_PMSGItem
DMUS_PMSGItem
;
struct
DMUS_PMSGItem
{
DMUS_PMSGItem
*
next
;
...
...
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