mmsystem: Create a real function for mciExecute.
This commit is contained in:
parent
22daf0e216
commit
05e625fe3f
|
@ -1500,7 +1500,6 @@ DWORD WINAPI mciSendStringA(LPCSTR lpstrCommand, LPSTR lpstrRet,
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* mciExecute [WINMM.@]
|
* mciExecute [WINMM.@]
|
||||||
* mciExecute [MMSYSTEM.712]
|
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI mciExecute(LPCSTR lpstrCommand)
|
BOOL WINAPI mciExecute(LPCSTR lpstrCommand)
|
||||||
{
|
{
|
||||||
|
|
|
@ -750,3 +750,11 @@ BOOL16 WINAPI mciFreeCommandResource16(UINT16 uTable)
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* mciExecute [MMSYSTEM.712]
|
||||||
|
*/
|
||||||
|
BOOL16 WINAPI mciExecute16(LPCSTR lpstrCommand)
|
||||||
|
{
|
||||||
|
return mciExecute(lpstrCommand);
|
||||||
|
}
|
||||||
|
|
|
@ -113,7 +113,7 @@
|
||||||
708 pascal mciGetDriverData(word) mciGetDriverData16
|
708 pascal mciGetDriverData(word) mciGetDriverData16
|
||||||
710 pascal mciDriverYield(word) mciDriverYield16
|
710 pascal mciDriverYield(word) mciDriverYield16
|
||||||
711 pascal mciDriverNotify(word word word) mciDriverNotify16
|
711 pascal mciDriverNotify(word word word) mciDriverNotify16
|
||||||
712 pascal mciExecute(ptr) mciExecute
|
712 pascal mciExecute(ptr) mciExecute16
|
||||||
713 pascal mciFreeCommandResource(word) mciFreeCommandResource16
|
713 pascal mciFreeCommandResource(word) mciFreeCommandResource16
|
||||||
714 pascal mciSetYieldProc(word ptr long) mciSetYieldProc16
|
714 pascal mciSetYieldProc(word ptr long) mciSetYieldProc16
|
||||||
715 pascal mciGetDeviceIDFromElementID(long ptr) mciGetDeviceIDFromElementID16
|
715 pascal mciGetDeviceIDFromElementID(long ptr) mciGetDeviceIDFromElementID16
|
||||||
|
|
Loading…
Reference in New Issue