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
3abaed0f
Commit
3abaed0f
authored
Oct 21, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Create a real function for MMSYSTEM.timeGetTime.
parent
0377c0d3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
mmsystem.c
dlls/winmm/mmsystem.c
+8
-0
mmsystem.spec
dlls/winmm/mmsystem.spec
+1
-1
time.c
dlls/winmm/time.c
+0
-1
No files found.
dlls/winmm/mmsystem.c
View file @
3abaed0f
...
...
@@ -2509,6 +2509,14 @@ MMRESULT16 WINAPI timeEndPeriod16(UINT16 wPeriod)
return
timeEndPeriod
(
wPeriod
);
}
/**************************************************************************
* timeGetTime [MMSYSTEM.607]
*/
DWORD
WINAPI
timeGetTime16
(
void
)
{
return
timeGetTime
();
}
/* ###################################################
* # JOYSTICK #
* ###################################################
...
...
dlls/winmm/mmsystem.spec
View file @
3abaed0f
...
...
@@ -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() timeGetTime
16
701 pascal mciSendCommand(word word long long) mciSendCommand16
702 pascal mciSendString(str ptr word word) mciSendString16
703 pascal mciGetDeviceID(ptr) mciGetDeviceID16
...
...
dlls/winmm/time.c
View file @
3abaed0f
...
...
@@ -438,7 +438,6 @@ MMRESULT WINAPI timeEndPeriod(UINT wPeriod)
}
/**************************************************************************
* timeGetTime [MMSYSTEM.607]
* timeGetTime [WINMM.@]
*/
DWORD
WINAPI
timeGetTime
(
void
)
...
...
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