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
1aae7b0f
Commit
1aae7b0f
authored
Jun 09, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmcompos: Move a struct definition to the .c file that uses it.
parent
c3e753c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
15 deletions
+7
-15
chordmap.c
dlls/dmcompos/chordmap.c
+7
-0
dmcompos_private.h
dlls/dmcompos/dmcompos_private.h
+0
-15
No files found.
dlls/dmcompos/chordmap.c
View file @
1aae7b0f
...
...
@@ -25,6 +25,13 @@ WINE_DECLARE_DEBUG_CHANNEL(dmfile);
/*****************************************************************************
* IDirectMusicChordMapImpl implementation
*/
typedef
struct
IDirectMusicChordMapImpl
{
IDirectMusicChordMap
IDirectMusicChordMap_iface
;
const
IDirectMusicObjectVtbl
*
ObjectVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
DMUS_OBJECTDESC
*
pDesc
;
}
IDirectMusicChordMapImpl
;
/* IDirectMusicChordMapImpl IDirectMusicChordMap part: */
static
inline
IDirectMusicChordMapImpl
*
impl_from_IDirectMusicChordMap
(
IDirectMusicChordMap
*
iface
)
...
...
dlls/dmcompos/dmcompos_private.h
View file @
1aae7b0f
...
...
@@ -45,7 +45,6 @@
/*****************************************************************************
* Interfaces
*/
typedef
struct
IDirectMusicChordMapImpl
IDirectMusicChordMapImpl
;
typedef
struct
IDirectMusicChordMapTrack
IDirectMusicChordMapTrack
;
typedef
struct
IDirectMusicSignPostTrack
IDirectMusicSignPostTrack
;
...
...
@@ -58,20 +57,6 @@ extern HRESULT WINAPI create_dmchordmaptrack(REFIID riid, void **ret_iface) DECL
extern
HRESULT
WINAPI
create_dmsignposttrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* IDirectMusicChordMapImpl implementation structure
*/
struct
IDirectMusicChordMapImpl
{
IDirectMusicChordMap
IDirectMusicChordMap_iface
;
const
IDirectMusicObjectVtbl
*
ObjectVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
/* IDirectMusicChordMapImpl fields */
LPDMUS_OBJECTDESC
pDesc
;
};
/*****************************************************************************
* IDirectMusicChordMapTrack implementation structure
*/
struct
IDirectMusicChordMapTrack
{
...
...
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