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
da1601e2
Commit
da1601e2
authored
Jun 18, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Remove patterntrack.c and tool.c as they are unused and don't correspond to objects.
parent
61b89b63
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
268 deletions
+0
-268
Makefile.in
dlls/dmime/Makefile.in
+0
-2
dmime_private.h
dlls/dmime/dmime_private.h
+0
-26
patterntrack.c
dlls/dmime/patterntrack.c
+0
-106
tool.c
dlls/dmime/tool.c
+0
-134
No files found.
dlls/dmime/Makefile.in
View file @
da1601e2
...
...
@@ -13,7 +13,6 @@ C_SRCS = \
lyricstrack.c
\
markertrack.c
\
paramcontroltrack.c
\
patterntrack.c
\
performance.c
\
regsvr.c
\
segment.c
\
...
...
@@ -23,7 +22,6 @@ C_SRCS = \
sysextrack.c
\
tempotrack.c
\
timesigtrack.c
\
tool.c
\
wavetrack.c
RC_SRCS
=
version.rc
...
...
dlls/dmime/dmime_private.h
View file @
da1601e2
...
...
@@ -51,8 +51,6 @@ typedef struct IDirectMusicSegment8Impl IDirectMusicSegment8Impl;
typedef
struct
IDirectMusicSegmentState8Impl
IDirectMusicSegmentState8Impl
;
typedef
struct
IDirectMusicGraphImpl
IDirectMusicGraphImpl
;
typedef
struct
IDirectMusicAudioPathImpl
IDirectMusicAudioPathImpl
;
typedef
struct
IDirectMusicTool8Impl
IDirectMusicTool8Impl
;
typedef
struct
IDirectMusicPatternTrackImpl
IDirectMusicPatternTrackImpl
;
typedef
struct
IDirectMusicLyricsTrack
IDirectMusicLyricsTrack
;
typedef
struct
IDirectMusicMarkerTrack
IDirectMusicMarkerTrack
;
...
...
@@ -72,8 +70,6 @@ extern HRESULT WINAPI DMUSIC_CreateDirectMusicSegmentImpl (LPCGUID lpcGUID, LPVO
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicSegmentStateImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicGraphImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicAudioPathImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicToolImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicPatternTrackImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicLyricsTrack
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
extern
HRESULT
WINAPI
DMUSIC_CreateDirectMusicMarkerTrack
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
);
...
...
@@ -237,28 +233,6 @@ struct IDirectMusicAudioPathImpl {
};
/*****************************************************************************
* IDirectMusicTool8Impl implementation structure
*/
struct
IDirectMusicTool8Impl
{
/* IUnknown fields */
const
IDirectMusicTool8Vtbl
*
lpVtbl
;
LONG
ref
;
/* IDirectMusicTool8Impl fields */
};
/*****************************************************************************
* IDirectMusicPatternTrackImpl implementation structure
*/
struct
IDirectMusicPatternTrackImpl
{
/* IUnknown fields */
const
IDirectMusicPatternTrackVtbl
*
lpVtbl
;
LONG
ref
;
/* IDirectMusicPatternTrackImpl fields */
};
/*****************************************************************************
* IDirectMusicLyricsTrack implementation structure
*/
struct
IDirectMusicLyricsTrack
...
...
dlls/dmime/patterntrack.c
deleted
100644 → 0
View file @
61b89b63
/* IDirectMusicPatternTrack Implementation
*
* Copyright (C) 2003-2004 Rok Mandeljc
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "dmime_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dmime
);
/* IDirectMusicPatternTrack IUnknown parts follow: */
static
HRESULT
WINAPI
IDirectMusicPatternTrackImpl_QueryInterface
(
LPDIRECTMUSICPATTERNTRACK
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
IDirectMusicPatternTrackImpl
*
This
=
(
IDirectMusicPatternTrackImpl
*
)
iface
;
TRACE
(
"(%p, %s, %p)
\n
"
,
This
,
debugstr_dmguid
(
riid
),
ppobj
);
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IDirectMusicPatternTrack
))
{
IUnknown_AddRef
(
iface
);
*
ppobj
=
This
;
return
S_OK
;
}
WARN
(
"(%p, %s, %p): not found
\n
"
,
This
,
debugstr_dmguid
(
riid
),
ppobj
);
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
IDirectMusicPatternTrackImpl_AddRef
(
LPDIRECTMUSICPATTERNTRACK
iface
)
{
IDirectMusicPatternTrackImpl
*
This
=
(
IDirectMusicPatternTrackImpl
*
)
iface
;
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p): AddRef from %d
\n
"
,
This
,
ref
-
1
);
DMIME_LockModule
();
return
ref
;
}
static
ULONG
WINAPI
IDirectMusicPatternTrackImpl_Release
(
LPDIRECTMUSICPATTERNTRACK
iface
)
{
IDirectMusicPatternTrackImpl
*
This
=
(
IDirectMusicPatternTrackImpl
*
)
iface
;
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p): ReleaseRef to %d
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
{
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
DMIME_UnlockModule
();
return
ref
;
}
/* IDirectMusicPatternTrack Interface follow: */
static
HRESULT
WINAPI
IDirectMusicPatternTrackImpl_CreateSegment
(
LPDIRECTMUSICPATTERNTRACK
iface
,
IDirectMusicStyle
*
pStyle
,
IDirectMusicSegment
**
ppSegment
)
{
IDirectMusicPatternTrackImpl
*
This
=
(
IDirectMusicPatternTrackImpl
*
)
iface
;
FIXME
(
"(%p, %p, %p): stub
\n
"
,
This
,
pStyle
,
ppSegment
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicPatternTrackImpl_SetVariation
(
LPDIRECTMUSICPATTERNTRACK
iface
,
IDirectMusicSegmentState
*
pSegState
,
DWORD
dwVariationFlags
,
DWORD
dwPart
)
{
IDirectMusicPatternTrackImpl
*
This
=
(
IDirectMusicPatternTrackImpl
*
)
iface
;
FIXME
(
"(%p, %p, %d, %d): stub
\n
"
,
This
,
pSegState
,
dwVariationFlags
,
dwPart
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicPatternTrackImpl_SetPatternByName
(
LPDIRECTMUSICPATTERNTRACK
iface
,
IDirectMusicSegmentState
*
pSegState
,
WCHAR
*
wszName
,
IDirectMusicStyle
*
pStyle
,
DWORD
dwPatternType
,
DWORD
*
pdwLength
)
{
IDirectMusicPatternTrackImpl
*
This
=
(
IDirectMusicPatternTrackImpl
*
)
iface
;
FIXME
(
"(%p, %p, %p, %p, %d, %p): stub
\n
"
,
This
,
pSegState
,
wszName
,
pStyle
,
dwPatternType
,
pdwLength
);
return
S_OK
;
}
static
const
IDirectMusicPatternTrackVtbl
DirectMusicPatternTrack_Vtbl
=
{
IDirectMusicPatternTrackImpl_QueryInterface
,
IDirectMusicPatternTrackImpl_AddRef
,
IDirectMusicPatternTrackImpl_Release
,
IDirectMusicPatternTrackImpl_CreateSegment
,
IDirectMusicPatternTrackImpl_SetVariation
,
IDirectMusicPatternTrackImpl_SetPatternByName
};
/* for ClassFactory */
HRESULT
WINAPI
DMUSIC_CreateDirectMusicPatternTrackImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
{
IDirectMusicPatternTrackImpl
*
track
;
track
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IDirectMusicPatternTrackImpl
));
if
(
NULL
==
track
)
{
*
ppobj
=
NULL
;
return
E_OUTOFMEMORY
;
}
track
->
lpVtbl
=
&
DirectMusicPatternTrack_Vtbl
;
track
->
ref
=
0
;
/* will be inited by QueryInterface */
return
IDirectMusicPatternTrackImpl_QueryInterface
((
LPDIRECTMUSICPATTERNTRACK
)
track
,
lpcGUID
,
ppobj
);
}
dlls/dmime/tool.c
deleted
100644 → 0
View file @
61b89b63
/* IDirectMusicTool8 Implementation
*
* Copyright (C) 2003-2004 Rok Mandeljc
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "dmime_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dmime
);
/* IDirectMusicTool8Impl IUnknown part: */
static
HRESULT
WINAPI
IDirectMusicTool8Impl_QueryInterface
(
LPDIRECTMUSICTOOL8
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
TRACE
(
"(%p, %s, %p)
\n
"
,
This
,
debugstr_dmguid
(
riid
),
ppobj
);
if
(
IsEqualIID
(
riid
,
&
IID_IUnknown
)
||
IsEqualIID
(
riid
,
&
IID_IDirectMusicTool
)
||
IsEqualIID
(
riid
,
&
IID_IDirectMusicTool8
))
{
IUnknown_AddRef
(
iface
);
*
ppobj
=
This
;
return
S_OK
;
}
WARN
(
"(%p, %s, %p): not found
\n
"
,
This
,
debugstr_dmguid
(
riid
),
ppobj
);
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
IDirectMusicTool8Impl_AddRef
(
LPDIRECTMUSICTOOL8
iface
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) : AddRef from %d
\n
"
,
This
,
ref
-
1
);
DMIME_LockModule
();
return
ref
;
}
static
ULONG
WINAPI
IDirectMusicTool8Impl_Release
(
LPDIRECTMUSICTOOL8
iface
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) : ReleaseRef to %d
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
{
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
DMIME_UnlockModule
();
return
ref
;
}
/* IDirectMusicTool8Impl IDirectMusicTool part: */
static
HRESULT
WINAPI
IDirectMusicTool8Impl_Init
(
LPDIRECTMUSICTOOL8
iface
,
IDirectMusicGraph
*
pGraph
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
FIXME
(
"(%p, %p): stub
\n
"
,
This
,
pGraph
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicTool8Impl_GetMsgDeliveryType
(
LPDIRECTMUSICTOOL8
iface
,
DWORD
*
pdwDeliveryType
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
FIXME
(
"(%p, %p): stub
\n
"
,
This
,
pdwDeliveryType
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicTool8Impl_GetMediaTypeArraySize
(
LPDIRECTMUSICTOOL8
iface
,
DWORD
*
pdwNumElements
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
FIXME
(
"(%p, %p): stub
\n
"
,
This
,
pdwNumElements
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicTool8Impl_GetMediaTypes
(
LPDIRECTMUSICTOOL8
iface
,
DWORD
**
padwMediaTypes
,
DWORD
dwNumElements
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
FIXME
(
"(%p, %p, %d): stub
\n
"
,
This
,
padwMediaTypes
,
dwNumElements
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicTool8Impl_ProcessPMsg
(
LPDIRECTMUSICTOOL8
iface
,
IDirectMusicPerformance
*
pPerf
,
DMUS_PMSG
*
pPMSG
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
FIXME
(
"(%p, %p, %p): stub
\n
"
,
This
,
pPerf
,
pPMSG
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicTool8Impl_Flush
(
LPDIRECTMUSICTOOL8
iface
,
IDirectMusicPerformance
*
pPerf
,
DMUS_PMSG
*
pPMSG
,
REFERENCE_TIME
rtTime
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
FIXME
(
"(%p, %p, %p, 0x%s): stub
\n
"
,
This
,
pPerf
,
pPMSG
,
wine_dbgstr_longlong
(
rtTime
));
return
S_OK
;
}
/* IDirectMusicTool8Impl IDirectMusicTool8 part: */
static
HRESULT
WINAPI
IDirectMusicTool8Impl_Clone
(
LPDIRECTMUSICTOOL8
iface
,
IDirectMusicTool
**
ppTool
)
{
IDirectMusicTool8Impl
*
This
=
(
IDirectMusicTool8Impl
*
)
iface
;
FIXME
(
"(%p, %p): stub
\n
"
,
This
,
ppTool
);
return
S_OK
;
}
static
const
IDirectMusicTool8Vtbl
DirectMusicTool8_Vtbl
=
{
IDirectMusicTool8Impl_QueryInterface
,
IDirectMusicTool8Impl_AddRef
,
IDirectMusicTool8Impl_Release
,
IDirectMusicTool8Impl_Init
,
IDirectMusicTool8Impl_GetMsgDeliveryType
,
IDirectMusicTool8Impl_GetMediaTypeArraySize
,
IDirectMusicTool8Impl_GetMediaTypes
,
IDirectMusicTool8Impl_ProcessPMsg
,
IDirectMusicTool8Impl_Flush
,
IDirectMusicTool8Impl_Clone
};
/* for ClassFactory */
HRESULT
WINAPI
DMUSIC_CreateDirectMusicobjImpl
(
LPCGUID
lpcGUID
,
LPVOID
*
ppobj
,
LPUNKNOWN
pUnkOuter
)
{
IDirectMusicTool8Impl
*
obj
;
obj
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IDirectMusicTool8Impl
));
if
(
NULL
==
obj
)
{
*
ppobj
=
NULL
;
return
E_OUTOFMEMORY
;
}
obj
->
lpVtbl
=
&
DirectMusicTool8_Vtbl
;
obj
->
ref
=
0
;
/* will be inited by QueryInterface */
return
IDirectMusicTool8Impl_QueryInterface
((
LPDIRECTMUSICTOOL8
)
obj
,
lpcGUID
,
ppobj
);
}
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