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
e22458c2
Commit
e22458c2
authored
Jun 09, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmstyle: Move a struct definition to the .c file that uses it.
parent
1aae7b0f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
20 deletions
+11
-20
dmstyle_private.h
dlls/dmstyle/dmstyle_private.h
+0
-20
style.c
dlls/dmstyle/style.c
+11
-0
No files found.
dlls/dmstyle/dmstyle_private.h
View file @
e22458c2
...
...
@@ -45,8 +45,6 @@
/*****************************************************************************
* Interfaces
*/
typedef
struct
IDirectMusicStyle8Impl
IDirectMusicStyle8Impl
;
typedef
struct
IDirectMusicAuditionTrack
IDirectMusicAuditionTrack
;
typedef
struct
IDirectMusicChordTrack
IDirectMusicChordTrack
;
typedef
struct
IDirectMusicCommandTrack
IDirectMusicCommandTrack
;
...
...
@@ -100,24 +98,6 @@ typedef struct _DMUS_PRIVATE_STYLE_ITEM {
/*****************************************************************************
* IDirectMusicStyle8Impl implementation structure
*/
struct
IDirectMusicStyle8Impl
{
IDirectMusicStyle8
IDirectMusicStyle8_iface
;
const
IDirectMusicObjectVtbl
*
ObjectVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
/* IDirectMusicStyle8Impl fields */
LPDMUS_OBJECTDESC
pDesc
;
DMUS_IO_STYLE
style
;
/* data */
struct
list
Motifs
;
struct
list
Bands
;
};
/*****************************************************************************
* IDirectMusicAuditionTrack implementation structure
*/
struct
IDirectMusicAuditionTrack
{
...
...
dlls/dmstyle/style.c
View file @
e22458c2
...
...
@@ -26,6 +26,17 @@ WINE_DECLARE_DEBUG_CHANNEL(dmfile);
/*****************************************************************************
* IDirectMusicStyleImpl implementation
*/
typedef
struct
IDirectMusicStyle8Impl
{
IDirectMusicStyle8
IDirectMusicStyle8_iface
;
const
IDirectMusicObjectVtbl
*
ObjectVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
DMUS_OBJECTDESC
*
pDesc
;
DMUS_IO_STYLE
style
;
struct
list
Motifs
;
struct
list
Bands
;
}
IDirectMusicStyle8Impl
;
static
inline
IDirectMusicStyle8Impl
*
impl_from_IDirectMusicStyle8
(
IDirectMusicStyle8
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
IDirectMusicStyle8Impl
,
IDirectMusicStyle8_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