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
eabbe5ab
Commit
eabbe5ab
authored
Aug 13, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: MMDRV_GetRelated() is not used anymore so remove it.
parent
c178b61b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
19 deletions
+0
-19
lolvldrv.c
dlls/winmm/lolvldrv.c
+0
-18
winemm.h
dlls/winmm/winemm.h
+0
-1
No files found.
dlls/winmm/lolvldrv.c
View file @
eabbe5ab
...
...
@@ -282,24 +282,6 @@ LPWINE_MLD MMDRV_Get(HANDLE _hndl, UINT type, BOOL bCanBeID)
}
/**************************************************************************
* MMDRV_GetRelated [internal]
*/
LPWINE_MLD
MMDRV_GetRelated
(
HANDLE
hndl
,
UINT
srcType
,
BOOL
bSrcCanBeID
,
UINT
dstType
)
{
LPWINE_MLD
mld
;
TRACE
(
"(%p, %04x, %c, %04x)
\n
"
,
hndl
,
srcType
,
bSrcCanBeID
?
'Y'
:
'N'
,
dstType
);
if
((
mld
=
MMDRV_Get
(
hndl
,
srcType
,
bSrcCanBeID
))
!=
NULL
)
{
WINE_MM_DRIVER_PART
*
part
=
&
MMDrvs
[
mld
->
mmdIndex
].
parts
[
dstType
];
if
(
part
->
nIDMin
<
part
->
nIDMax
)
return
MMDRV_GetByID
(
part
->
nIDMin
,
dstType
);
}
return
NULL
;
}
/**************************************************************************
* MMDRV_PhysicalFeatures [internal]
*/
UINT
MMDRV_PhysicalFeatures
(
LPWINE_MLD
mld
,
UINT
uMsg
,
...
...
dlls/winmm/winemm.h
View file @
eabbe5ab
...
...
@@ -140,7 +140,6 @@ void MMDRV_Free(HANDLE hndl, LPWINE_MLD mld) DECLSPEC_HIDDEN;
DWORD
MMDRV_Open
(
LPWINE_MLD
mld
,
UINT
wMsg
,
DWORD_PTR
dwParam1
,
DWORD
dwParam2
)
DECLSPEC_HIDDEN
;
DWORD
MMDRV_Close
(
LPWINE_MLD
mld
,
UINT
wMsg
)
DECLSPEC_HIDDEN
;
LPWINE_MLD
MMDRV_Get
(
HANDLE
hndl
,
UINT
type
,
BOOL
bCanBeID
)
DECLSPEC_HIDDEN
;
LPWINE_MLD
MMDRV_GetRelated
(
HANDLE
hndl
,
UINT
srcType
,
BOOL
bSrcCanBeID
,
UINT
dstTyped
)
DECLSPEC_HIDDEN
;
DWORD
MMDRV_Message
(
LPWINE_MLD
mld
,
UINT
wMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
)
DECLSPEC_HIDDEN
;
UINT
MMDRV_PhysicalFeatures
(
LPWINE_MLD
mld
,
UINT
uMsg
,
DWORD_PTR
dwParam1
,
DWORD_PTR
dwParam2
)
DECLSPEC_HIDDEN
;
...
...
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