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
da9c394f
Commit
da9c394f
authored
Apr 12, 2005
by
Robert Reif
Committed by
Alexandre Julliard
Apr 12, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub out DRVM_MAPPER_RECONFIGURE support.
parent
541e5b37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
wavemap.c
dlls/winmm/wavemap/wavemap.c
+16
-0
No files found.
dlls/winmm/wavemap/wavemap.c
View file @
da9c394f
...
...
@@ -590,6 +590,13 @@ static DWORD wodMapperStatus(WAVEMAPDATA* wom, DWORD flags, LPVOID ptr)
return
ret
;
}
static
DWORD
wodMapperReconfigure
(
WAVEMAPDATA
*
wom
,
DWORD
dwParam1
,
DWORD
dwParam2
)
{
FIXME
(
"(%p %08lx %08lx) stub!
\n
"
,
wom
,
dwParam1
,
dwParam2
);
return
MMSYSERR_NOERROR
;
}
/**************************************************************************
* wodMessage (MSACM.@)
*/
...
...
@@ -625,6 +632,7 @@ DWORD WINAPI WAVEMAP_wodMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
case
WODM_RESTART
:
return
wodRestart
((
WAVEMAPDATA
*
)
dwUser
);
case
WODM_RESET
:
return
wodReset
((
WAVEMAPDATA
*
)
dwUser
);
case
WODM_MAPPER_STATUS
:
return
wodMapperStatus
((
WAVEMAPDATA
*
)
dwUser
,
dwParam1
,
(
LPVOID
)
dwParam2
);
case
DRVM_MAPPER_RECONFIGURE
:
return
wodMapperReconfigure
((
WAVEMAPDATA
*
)
dwUser
,
dwParam1
,
dwParam2
);
/* known but not supported */
case
DRV_QUERYDEVICEINTERFACESIZE
:
case
DRV_QUERYDEVICEINTERFACE
:
...
...
@@ -1109,6 +1117,13 @@ static DWORD widMapperStatus(WAVEMAPDATA* wim, DWORD flags, LPVOID ptr)
return
ret
;
}
static
DWORD
widMapperReconfigure
(
WAVEMAPDATA
*
wim
,
DWORD
dwParam1
,
DWORD
dwParam2
)
{
FIXME
(
"(%p %08lx %08lx) stub!
\n
"
,
wim
,
dwParam1
,
dwParam2
);
return
MMSYSERR_NOERROR
;
}
/**************************************************************************
* widMessage (MSACM.@)
*/
...
...
@@ -1139,6 +1154,7 @@ DWORD WINAPI WAVEMAP_widMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
case
WIDM_START
:
return
widStart
((
WAVEMAPDATA
*
)
dwUser
);
case
WIDM_STOP
:
return
widStop
((
WAVEMAPDATA
*
)
dwUser
);
case
WIDM_MAPPER_STATUS
:
return
widMapperStatus
((
WAVEMAPDATA
*
)
dwUser
,
dwParam1
,
(
LPVOID
)
dwParam2
);
case
DRVM_MAPPER_RECONFIGURE
:
return
widMapperReconfigure
((
WAVEMAPDATA
*
)
dwUser
,
dwParam1
,
dwParam2
);
/* known but not supported */
case
DRV_QUERYDEVICEINTERFACESIZE
:
case
DRV_QUERYDEVICEINTERFACE
:
...
...
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