Commit 3abaed0f authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winmm: Create a real function for MMSYSTEM.timeGetTime.

parent 0377c0d3
......@@ -2509,6 +2509,14 @@ MMRESULT16 WINAPI timeEndPeriod16(UINT16 wPeriod)
return timeEndPeriod(wPeriod);
}
/**************************************************************************
* timeGetTime [MMSYSTEM.607]
*/
DWORD WINAPI timeGetTime16(void)
{
return timeGetTime();
}
/* ###################################################
* # JOYSTICK #
* ###################################################
......
......@@ -103,7 +103,7 @@
604 pascal timeGetDevCaps(ptr word) timeGetDevCaps16
605 pascal timeBeginPeriod(word) timeBeginPeriod16
606 pascal timeEndPeriod(word) timeEndPeriod16
607 pascal timeGetTime() timeGetTime
607 pascal timeGetTime() timeGetTime16
701 pascal mciSendCommand(word word long long) mciSendCommand16
702 pascal mciSendString(str ptr word word) mciSendString16
703 pascal mciGetDeviceID(ptr) mciGetDeviceID16
......
......@@ -438,7 +438,6 @@ MMRESULT WINAPI timeEndPeriod(UINT wPeriod)
}
/**************************************************************************
* timeGetTime [MMSYSTEM.607]
* timeGetTime [WINMM.@]
*/
DWORD WINAPI timeGetTime(void)
......
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