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
f0324c96
Commit
f0324c96
authored
May 14, 2012
by
Christian Costa
Committed by
Alexandre Julliard
May 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: COM cleanup of DirectMusicCollection and get rid of separated IUnknown interface.
parent
540ae18f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
19 deletions
+19
-19
collection.c
dlls/dmusic/collection.c
+0
-0
dmusic_private.h
dlls/dmusic/dmusic_private.h
+19
-19
No files found.
dlls/dmusic/collection.c
View file @
f0324c96
This diff is collapsed.
Click to expand it.
dlls/dmusic/dmusic_private.h
View file @
f0324c96
/* DirectMusic Private Include
/*
* DirectMusic Private Include
*
* Copyright (C) 2003-2004 Rok Mandeljc
*
...
...
@@ -188,25 +189,24 @@ typedef struct _DMUS_PRIVATE_POOLCUE {
* IDirectMusicCollectionImpl implementation structure
*/
struct
IDirectMusicCollectionImpl
{
/* IUnknown fields */
const
IUnknownVtbl
*
UnknownVtbl
;
const
IDirectMusicCollectionVtbl
*
CollectionVtbl
;
const
IDirectMusicObjectVtbl
*
ObjectVtbl
;
const
IPersistStreamVtbl
*
PersistStreamVtbl
;
LONG
ref
;
/* IUnknown fields */
IDirectMusicCollection
IDirectMusicCollection_iface
;
IDirectMusicObject
IDirectMusicObject_iface
;
IPersistStream
IPersistStream_iface
;
LONG
ref
;
/* IDirectMusicCollectionImpl fields */
IStream
*
pStm
;
/* stream from which we load collection and later instruments */
LARGE_INTEGER
liCollectionPosition
;
/* offset in a stream where collection was loaded from */
LARGE_INTEGER
liWavePoolTablePosition
;
/* offset in a stream where wave pool table can be found */
LPDMUS_OBJECTDESC
pDesc
;
CHAR
*
szCopyright
;
/* FIXME: should probably placed somewhere else */
LPDLSHEADER
pHeader
;
/* pool table */
LPPOOLTABLE
pPoolTable
;
LPPOOLCUE
pPoolCues
;
/* instruments */
struct
list
Instruments
;
/* IDirectMusicCollectionImpl fields */
IStream
*
pStm
;
/* stream from which we load collection and later instruments */
LARGE_INTEGER
liCollectionPosition
;
/* offset in a stream where collection was loaded from */
LARGE_INTEGER
liWavePoolTablePosition
;
/* offset in a stream where wave pool table can be found */
LPDMUS_OBJECTDESC
pDesc
;
CHAR
*
szCopyright
;
/* FIXME: should probably placed somewhere else */
LPDLSHEADER
pHeader
;
/* pool table */
LPPOOLTABLE
pPoolTable
;
LPPOOLCUE
pPoolCues
;
/* instruments */
struct
list
Instruments
;
};
/*****************************************************************************
...
...
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