Changeset 222 for trunk/src/helpers/timer.c
- Timestamp:
- Sep 3, 2002, 8:17:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/timer.c
r191 r222 159 159 */ 160 160 161 staticBOOL LockTimers(VOID)161 STATIC BOOL LockTimers(VOID) 162 162 { 163 163 if (!G_hmtxTimers) … … 176 176 */ 177 177 178 staticVOID UnlockTimers(VOID)178 STATIC VOID UnlockTimers(VOID) 179 179 { 180 180 DosReleaseMutexSem(G_hmtxTimers); … … 190 190 */ 191 191 192 staticPXTIMER FindTimer(PXTIMERSET pSet, // in: timer set (from tmrCreateSet)192 STATIC PXTIMER FindTimer(PXTIMERSET pSet, // in: timer set (from tmrCreateSet) 193 193 HWND hwnd, // in: timer target window 194 194 USHORT usTimerID) // in: timer ID … … 225 225 */ 226 226 227 staticVOID RemoveTimer(PXTIMERSET pSet, // in: timer set (from tmrCreateSet)227 STATIC VOID RemoveTimer(PXTIMERSET pSet, // in: timer set (from tmrCreateSet) 228 228 PXTIMER pTimer) // in: timer to remove 229 229 { … … 252 252 */ 253 253 254 staticVOID AdjustPMTimer(PXTIMERSET pSet)254 STATIC VOID AdjustPMTimer(PXTIMERSET pSet) 255 255 { 256 256 PLINKLIST pllXTimers = (PLINKLIST)pSet->pvllXTimers;
Note:
See TracChangeset
for help on using the changeset viewer.