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
f96f53ea
Commit
f96f53ea
authored
Aug 24, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Sep 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Move IDirectMusicDownloadImpl struct to where it is used.
parent
ac25d099
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
12 deletions
+8
-12
dmusic_private.h
dlls/dmusic/dmusic_private.h
+0
-12
download.c
dlls/dmusic/download.c
+8
-0
No files found.
dlls/dmusic/dmusic_private.h
View file @
f96f53ea
...
...
@@ -47,7 +47,6 @@
typedef
struct
IDirectMusic8Impl
IDirectMusic8Impl
;
typedef
struct
IDirectMusicBufferImpl
IDirectMusicBufferImpl
;
typedef
struct
IDirectMusicDownloadedInstrumentImpl
IDirectMusicDownloadedInstrumentImpl
;
typedef
struct
IDirectMusicDownloadImpl
IDirectMusicDownloadImpl
;
typedef
struct
IReferenceClockImpl
IReferenceClockImpl
;
typedef
struct
IDirectMusicInstrumentImpl
IDirectMusicInstrumentImpl
;
...
...
@@ -145,17 +144,6 @@ struct IDirectMusicDownloadedInstrumentImpl {
void
*
data
;
};
/*****************************************************************************
* IDirectMusicDownloadImpl implementation structure
*/
struct
IDirectMusicDownloadImpl
{
/* IUnknown fields */
IDirectMusicDownload
IDirectMusicDownload_iface
;
LONG
ref
;
/* IDirectMusicDownloadImpl fields */
};
/** Internal factory */
extern
HRESULT
synth_port_create
(
IDirectMusic8Impl
*
parent
,
DMUS_PORTPARAMS
*
port_params
,
DMUS_PORTCAPS
*
port_caps
,
IDirectMusicPort
**
port
);
...
...
dlls/dmusic/download.c
View file @
f96f53ea
...
...
@@ -23,6 +23,14 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
dmusic
);
struct
IDirectMusicDownloadImpl
{
IDirectMusicDownload
IDirectMusicDownload_iface
;
LONG
ref
;
};
typedef
struct
IDirectMusicDownloadImpl
IDirectMusicDownloadImpl
;
static
inline
IDirectMusicDownloadImpl
*
impl_from_IDirectMusicDownload
(
IDirectMusicDownload
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
IDirectMusicDownloadImpl
,
IDirectMusicDownload_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