Changeset 17125cc60b178e1f4419e5242f233f89c5368703
- Timestamp:
- 13/03/08 04:38:54
(9 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1205379534 -0700
- git-parent:
[e6b20aa94016e228096229844d49d3a28ebf947d]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1205379534 -0700
- Message:
Shut a few unused parameters for Windows compiling.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r21720e0 |
r17125cc |
|
| 379 | 379 | { |
|---|
| 380 | 380 | #if defined( UNDER_CE ) |
|---|
| | 381 | VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); |
|---|
| | 382 | |
|---|
| 381 | 383 | DeleteCriticalSection( &p_mutex->csection ); |
|---|
| 382 | 384 | |
|---|
| 383 | 385 | #elif defined( WIN32 ) |
|---|
| | 386 | VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); |
|---|
| | 387 | |
|---|
| 384 | 388 | if( p_mutex->mutex ) |
|---|
| 385 | 389 | CloseHandle( p_mutex->mutex ); |
|---|
| … | … | |
| 500 | 504 | { |
|---|
| 501 | 505 | #if defined( UNDER_CE ) |
|---|
| | 506 | VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); |
|---|
| | 507 | |
|---|
| 502 | 508 | CloseHandle( p_condvar->event ); |
|---|
| 503 | 509 | |
|---|
| 504 | 510 | #elif defined( WIN32 ) |
|---|
| | 511 | VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); |
|---|
| | 512 | |
|---|
| 505 | 513 | if( !p_condvar->semaphore ) |
|---|
| 506 | 514 | CloseHandle( p_condvar->event ); |
|---|
| … | … | |
| 685 | 693 | vlc_object_internals_t *p_priv = p_this->p_internals; |
|---|
| 686 | 694 | #if defined( WIN32 ) || defined( UNDER_CE ) |
|---|
| | 695 | VLC_UNUSED( psz_file); VLC_UNUSED( i_line ); |
|---|
| | 696 | |
|---|
| 687 | 697 | if( !p_priv->thread_id.hThread ) |
|---|
| 688 | 698 | p_priv->thread_id.hThread = GetCurrentThread(); |
|---|