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
05e625fe
Commit
05e625fe
authored
Oct 20, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmsystem: Create a real function for mciExecute.
parent
22daf0e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
mci.c
dlls/winmm/mci.c
+0
-1
mci16.c
dlls/winmm/mci16.c
+8
-0
mmsystem.spec
dlls/winmm/mmsystem.spec
+1
-1
No files found.
dlls/winmm/mci.c
View file @
05e625fe
...
@@ -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
)
{
{
...
...
dlls/winmm/mci16.c
View file @
05e625fe
...
@@ -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
);
}
dlls/winmm/mmsystem.spec
View file @
05e625fe
...
@@ -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) mciExecute
16
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
...
...
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