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
cb5c00d5
Commit
cb5c00d5
authored
Jan 03, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid referencing a private header in another dll.
parent
43cb03be
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
13 deletions
+11
-13
dmime_private.h
dlls/dmime/dmime_private.h
+11
-2
dmusic_private.h
dlls/dmusic/dmusic_private.h
+0
-11
No files found.
dlls/dmime/dmime_private.h
View file @
cb5c00d5
...
@@ -34,8 +34,6 @@
...
@@ -34,8 +34,6 @@
#include "dmusicf.h"
#include "dmusicf.h"
#include "dsound.h"
#include "dsound.h"
#include "../dmusic/dmusic_private.h"
/*****************************************************************************
/*****************************************************************************
* Interfaces
* Interfaces
*/
*/
...
@@ -167,6 +165,17 @@ extern HRESULT WINAPI DMUSIC_CreateDirectMusicTempoTrack (LPCGUID lpcGUID, LPDIR
...
@@ -167,6 +165,17 @@ extern HRESULT WINAPI DMUSIC_CreateDirectMusicTempoTrack (LPCGUID lpcGUID, LPDIR
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicTimeSigTrack
(
LPCGUID
lpcGUID
,
LPDIRECTMUSICTRACK8
*
ppTrack
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicTimeSigTrack
(
LPCGUID
lpcGUID
,
LPDIRECTMUSICTRACK8
*
ppTrack
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicWaveTrack
(
LPCGUID
lpcGUID
,
LPDIRECTMUSICTRACK8
*
ppTrack
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicWaveTrack
(
LPCGUID
lpcGUID
,
LPDIRECTMUSICTRACK8
*
ppTrack
,
LPUNKNOWN
pUnkOuter
);
/* some sort of aux. performance channel: as far as i can understand, these are
used to represent a particular midi channel in particular group at particular
group; so all we need to do is to fill it with parent port, group and midi
channel ? */
typedef
struct
DMUSIC_PRIVATE_PCHANNEL_
{
DWORD
channel
;
/* map to this channel... */
DWORD
group
;
/* ... in this group ... */
IDirectMusicPort
*
port
;
/* ... at this port */
}
DMUSIC_PRIVATE_PCHANNEL
,
*
LPDMUSIC_PRIVATE_PCHANNEL
;
/*****************************************************************************
/*****************************************************************************
* IDirectMusicPerformance8Impl implementation structure
* IDirectMusicPerformance8Impl implementation structure
*/
*/
...
...
dlls/dmusic/dmusic_private.h
View file @
cb5c00d5
...
@@ -72,17 +72,6 @@ extern ICOM_VTABLE(IPersistStream) DirectMusicCollectionObjectStream_Vtbl;
...
@@ -72,17 +72,6 @@ extern ICOM_VTABLE(IPersistStream) DirectMusicCollectionObjectStream_Vtbl;
* Some stuff to make my life easier :=)
* Some stuff to make my life easier :=)
*/
*/
/* some sort of aux. performance channel: as far as i can understand, these are
used to represent a particular midi channel in particular group at particular
group; so all we need to do is to fill it with parent port, group and midi
channel ? */
typedef
struct
DMUSIC_PRIVATE_PCHANNEL_
{
DWORD
channel
;
/* map to this channel... */
DWORD
group
;
/* ... in this group ... */
IDirectMusicPort
*
port
;
/* ... at this port */
}
DMUSIC_PRIVATE_PCHANNEL
,
*
LPDMUSIC_PRIVATE_PCHANNEL
;
/* some sort of aux. midi channel: big fake at the moment; accepts only priority
/* some sort of aux. midi channel: big fake at the moment; accepts only priority
changes... more coming soon */
changes... more coming soon */
typedef
struct
DMUSIC_PRIVATE_MCHANNEL_
typedef
struct
DMUSIC_PRIVATE_MCHANNEL_
...
...
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