1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

Win32: fix src/ compilation

This commit is contained in:
Jean-Baptiste Kempf 2009-08-20 23:00:56 +02:00
parent 473c70d7e3
commit 908d0b9375
3 changed files with 5 additions and 0 deletions

View File

@ -359,6 +359,8 @@ static const char *
char *const *argv;
const char *optstring;
{
(void)argc;
(void)argv;
/* Start processing options with ARGV-element 1 (since ARGV-element 0
is the program name); the sequence of previously skipped
non-option ARGV-elements is empty. */

View File

@ -373,6 +373,8 @@ void vlc_rwlock_unlock (vlc_rwlock_t *lock)
int vlc_threadvar_create (vlc_threadvar_t *p_tls, void (*destr) (void *))
{
#warning FIXME: use destr() callback and stop leaking!
VLC_UNUSED( destr );
*p_tls = TlsAlloc();
return (*p_tls == TLS_OUT_OF_INDEXES) ? EAGAIN : 0;
}

View File

@ -47,6 +47,7 @@
*****************************************************************************/
void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] )
{
VLC_UNUSED( p_this ); VLC_UNUSED( pi_argc ); VLC_UNUSED( ppsz_argv );
WSADATA Data;
/* Get our full path */