Changeset 8b70bda5cd60dc926bfde739f6fa610f2b2d49c5
- Timestamp:
- 11/12/03 11:44:32
(5 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1071139472 +0000
- git-parent:
[404e9c36957514e3f17f724740a64e67f99a5d4b]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1071139472 +0000
- Message:
* src/misc/mtime.c: actually tested and fixed my latest changes ;)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9e1d63b |
r8b70bda |
|
| 4 | 4 | ***************************************************************************** |
|---|
| 5 | 5 | * Copyright (C) 1998-2001, 2003 VideoLAN |
|---|
| 6 | | * $Id: mtime.c,v 1.40 2003/12/09 19:18:48 gbazin Exp $ |
|---|
| | 6 | * $Id: mtime.c,v 1.41 2003/12/11 10:44:32 gbazin Exp $ |
|---|
| 7 | 7 | * |
|---|
| 8 | 8 | * Authors: Vincent Seguin <seguin@via.ecp.fr> |
|---|
| … | … | |
| 169 | 169 | { |
|---|
| 170 | 170 | /* Initialization */ |
|---|
| 171 | | i_previous_time = usec_time; |
|---|
| | 171 | i_previous_time = I64C(1000) * GetTickCount(); |
|---|
| 172 | 172 | InitializeCriticalSection( &date_lock ); |
|---|
| 173 | 173 | i_wrap_counts = 0; |
|---|