Commit 05e625fe authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

mmsystem: Create a real function for mciExecute.

parent 22daf0e2
...@@ -1500,7 +1500,6 @@ DWORD WINAPI mciSendStringA(LPCSTR lpstrCommand, LPSTR lpstrRet, ...@@ -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) ...@@ -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 @@ ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment