Changeset 8470 for trunk/src/winmm/time.cpp
- Timestamp:
- May 22, 2002, 5:50:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/time.cpp
r7428 r8470 1 /* $Id: time.cpp,v 1.1 5 2001-11-22 15:40:46 phallerExp $ */1 /* $Id: time.cpp,v 1.16 2002-05-22 15:50:26 sandervl Exp $ */ 2 2 3 3 /* … … 26 26 #include "dbglocal.h" 27 27 28 ODINDEBUGCHANNEL(WINMM-TIME)29 30 28 31 29 /***************************************************************************** … … 42 40 43 41 44 ODINFUNCTION0(UINT, mmsystemGetVersion)42 UINT WINAPI mmsystemGetVersion() 45 43 { 46 44 //Returned by winmm.dll from NT4, SP6 … … 60 58 *****************************************************************************/ 61 59 62 ODINFUNCTION2(MMRESULT, timeGetDevCaps, 63 LPTIMECAPS, ptc, 64 UINT, cbtc) 60 MMRESULT WINAPI timeGetDevCaps(LPTIMECAPS ptc, UINT cbtc) 65 61 { 66 62 dprintf(("WINMM:timeGetDevCaps Not really Implemented\n")); … … 89 85 *****************************************************************************/ 90 86 91 ODINFUNCTION1(MMRESULT, timeBeginPeriod, 92 UINT, cMilliseconds) 87 MMRESULT WINAPI timeBeginPeriod(UINT cMilliseconds) 93 88 { 94 89 if (TRUE == OS2TimerResolution::enterResolutionScope(cMilliseconds)) … … 111 106 *****************************************************************************/ 112 107 113 ODINFUNCTION1(MMRESULT, timeEndPeriod, 114 UINT, cMilliseconds) 108 MMRESULT WINAPI timeEndPeriod(UINT cMilliseconds) 115 109 { 116 110 if (TRUE == OS2TimerResolution::leaveResolutionScope(cMilliseconds)) … … 136 130 *****************************************************************************/ 137 131 138 ODINFUNCTION1(MMRESULT, timeKillEvent, 139 UINT, IDEvent) 132 MMRESULT WINAPI timeKillEvent(UINT IDEvent) 140 133 { 141 134 OS2Timer *os2timer = NULL; … … 165 158 *****************************************************************************/ 166 159 167 ODINFUNCTION5(MMRESULT, timeSetEvent, 168 UINT, wDelay, 169 UINT, wResolution, 170 LPTIMECALLBACK, lptc, 171 DWORD, dwUser, 172 UINT, fuEvent) 160 MMRESULT WINAPI timeSetEvent(UINT wDelay, UINT wResolution, 161 LPTIMECALLBACK lptc, DWORD dwUser, 162 UINT fuEvent) 173 163 { 174 164 OS2Timer *timer; … … 259 249 *****************************************************************************/ 260 250 261 ODINFUNCTION2(MMRESULT, timeGetSystemTime, 262 LPMMTIME, pTime, 263 UINT, cbTime) 251 MMRESULT WINAPI timeGetSystemTime(LPMMTIME pTime, UINT cbTime) 264 252 { 265 253 dprintf2(("timeGetSystemTime %x %d", pTime, cbTime));
Note:
See TracChangeset
for help on using the changeset viewer.