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
8b9fd893
Commit
8b9fd893
authored
Jun 09, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Move a struct definition to the .c file that uses it.
parent
232aeb6b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
17 deletions
+11
-17
dmime_private.h
dlls/dmime/dmime_private.h
+0
-17
segment.c
dlls/dmime/segment.c
+11
-0
No files found.
dlls/dmime/dmime_private.h
View file @
8b9fd893
...
...
@@ -46,7 +46,6 @@
/*****************************************************************************
* Interfaces
*/
typedef
struct
IDirectMusicSegment8Impl
IDirectMusicSegment8Impl
;
typedef
struct
IDirectMusicGraphImpl
IDirectMusicGraphImpl
;
typedef
struct
IDirectMusicAudioPathImpl
IDirectMusicAudioPathImpl
;
...
...
@@ -122,22 +121,6 @@ typedef struct DMUSIC_PRIVATE_PCHANNEL_ {
}
DMUSIC_PRIVATE_PCHANNEL
,
*
LPDMUSIC_PRIVATE_PCHANNEL
;
/*****************************************************************************
* IDirectMusicSegment8Impl implementation structure
*/
struct
IDirectMusicSegment8Impl
{
IDirectMusicSegment8
IDirectMusicSegment8_iface
;
const
IDirectMusicObjectVtbl
*
ObjectVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
/* IDirectMusicSegment8Impl fields */
LPDMUS_OBJECTDESC
pDesc
;
DMUS_IO_SEGMENT_HEADER
header
;
IDirectMusicGraph
*
pGraph
;
struct
list
Tracks
;
};
/*****************************************************************************
* IDirectMusicAudioPathImpl implementation structure
*/
struct
IDirectMusicAudioPathImpl
{
...
...
dlls/dmime/segment.c
View file @
8b9fd893
...
...
@@ -26,6 +26,17 @@ WINE_DECLARE_DEBUG_CHANNEL(dmfile);
/*****************************************************************************
* IDirectMusicSegmentImpl implementation
*/
typedef
struct
IDirectMusicSegment8Impl
{
IDirectMusicSegment8
IDirectMusicSegment8_iface
;
const
IDirectMusicObjectVtbl
*
ObjectVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
DMUS_OBJECTDESC
*
pDesc
;
DMUS_IO_SEGMENT_HEADER
header
;
IDirectMusicGraph
*
pGraph
;
struct
list
Tracks
;
}
IDirectMusicSegment8Impl
;
static
inline
IDirectMusicSegment8Impl
*
impl_from_IDirectMusicSegment8
(
IDirectMusicSegment8
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
IDirectMusicSegment8Impl
,
IDirectMusicSegment8_iface
);
...
...
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