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
bf117ec5
Commit
bf117ec5
authored
Jun 25, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmcompos: Move struct definitions to the files that need them.
parent
1e421a26
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
34 deletions
+16
-34
chordmaptrack.c
dlls/dmcompos/chordmaptrack.c
+8
-0
dmcompos_private.h
dlls/dmcompos/dmcompos_private.h
+0
-34
signposttrack.c
dlls/dmcompos/signposttrack.c
+8
-0
No files found.
dlls/dmcompos/chordmaptrack.c
View file @
bf117ec5
...
@@ -28,6 +28,14 @@ static ULONG WINAPI IDirectMusicChordMapTrack_IPersistStream_AddRef (LPPERSISTST
...
@@ -28,6 +28,14 @@ static ULONG WINAPI IDirectMusicChordMapTrack_IPersistStream_AddRef (LPPERSISTST
/*****************************************************************************
/*****************************************************************************
* IDirectMusicChordMapTrack implementation
* IDirectMusicChordMapTrack implementation
*/
*/
typedef
struct
IDirectMusicChordMapTrack
{
const
IUnknownVtbl
*
UnknownVtbl
;
const
IDirectMusicTrack8Vtbl
*
TrackVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
DMUS_OBJECTDESC
*
pDesc
;
}
IDirectMusicChordMapTrack
;
/* IDirectMusicChordMapTrack IUnknown part: */
/* IDirectMusicChordMapTrack IUnknown part: */
static
HRESULT
WINAPI
IDirectMusicChordMapTrack_IUnknown_QueryInterface
(
LPUNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
static
HRESULT
WINAPI
IDirectMusicChordMapTrack_IUnknown_QueryInterface
(
LPUNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
ICOM_THIS_MULTI
(
IDirectMusicChordMapTrack
,
UnknownVtbl
,
iface
);
ICOM_THIS_MULTI
(
IDirectMusicChordMapTrack
,
UnknownVtbl
,
iface
);
...
...
dlls/dmcompos/dmcompos_private.h
View file @
bf117ec5
...
@@ -43,12 +43,6 @@
...
@@ -43,12 +43,6 @@
#include "dmusics.h"
#include "dmusics.h"
/*****************************************************************************
/*****************************************************************************
* Interfaces
*/
typedef
struct
IDirectMusicChordMapTrack
IDirectMusicChordMapTrack
;
typedef
struct
IDirectMusicSignPostTrack
IDirectMusicSignPostTrack
;
/*****************************************************************************
* ClassFactory
* ClassFactory
*/
*/
extern
HRESULT
WINAPI
create_dmchordmap
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmchordmap
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
...
@@ -56,34 +50,6 @@ extern HRESULT WINAPI create_dmcomposer(REFIID riid, void **ret_iface) DECLSPEC_
...
@@ -56,34 +50,6 @@ extern HRESULT WINAPI create_dmcomposer(REFIID riid, void **ret_iface) DECLSPEC_
extern
HRESULT
WINAPI
create_dmchordmaptrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmchordmaptrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmsignposttrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
create_dmsignposttrack
(
REFIID
riid
,
void
**
ret_iface
)
DECLSPEC_HIDDEN
;
/*****************************************************************************
* IDirectMusicChordMapTrack implementation structure
*/
struct
IDirectMusicChordMapTrack
{
/* IUnknown fields */
const
IUnknownVtbl
*
UnknownVtbl
;
const
IDirectMusicTrack8Vtbl
*
TrackVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
/* IDirectMusicChordMapTrack fields */
LPDMUS_OBJECTDESC
pDesc
;
};
/*****************************************************************************
* IDirectMusicSignPostTrack implementation structure
*/
struct
IDirectMusicSignPostTrack
{
/* IUnknown fields */
const
IUnknownVtbl
*
UnknownVtbl
;
const
IDirectMusicTrack8Vtbl
*
TrackVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
/* IDirectMusicSignPostTrack fields */
LPDMUS_OBJECTDESC
pDesc
;
};
/**********************************************************************
/**********************************************************************
* Dll lifetime tracking declaration for dmcompos.dll
* Dll lifetime tracking declaration for dmcompos.dll
*/
*/
...
...
dlls/dmcompos/signposttrack.c
View file @
bf117ec5
...
@@ -28,6 +28,14 @@ static ULONG WINAPI IDirectMusicSignPostTrack_IPersistStream_AddRef (LPPERSISTST
...
@@ -28,6 +28,14 @@ static ULONG WINAPI IDirectMusicSignPostTrack_IPersistStream_AddRef (LPPERSISTST
/*****************************************************************************
/*****************************************************************************
* IDirectMusicSignPostTrack implementation
* IDirectMusicSignPostTrack implementation
*/
*/
typedef
struct
IDirectMusicSignPostTrack
{
const
IUnknownVtbl
*
UnknownVtbl
;
const
IDirectMusicTrack8Vtbl
*
TrackVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
DMUS_OBJECTDESC
*
pDesc
;
}
IDirectMusicSignPostTrack
;
/* IDirectMusicSignPostTrack IUnknown part: */
/* IDirectMusicSignPostTrack IUnknown part: */
static
HRESULT
WINAPI
IDirectMusicSignPostTrack_IUnknown_QueryInterface
(
LPUNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
static
HRESULT
WINAPI
IDirectMusicSignPostTrack_IUnknown_QueryInterface
(
LPUNKNOWN
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
ICOM_THIS_MULTI
(
IDirectMusicSignPostTrack
,
UnknownVtbl
,
iface
);
ICOM_THIS_MULTI
(
IDirectMusicSignPostTrack
,
UnknownVtbl
,
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