X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc%2Fwin32_specific.c;h=a2e5bbad1bfaea78069fcee7c4634b4240230494;hb=baa735b3ee1d0136c5776e4bcf0f339641b626f5;hp=01421585fcc3a0f8fe6d71145e3e7e6ef205746a;hpb=cdf126129d9ea4f4842d7837439fb0cea517692b;p=vlc diff --git a/src/misc/win32_specific.c b/src/misc/win32_specific.c index 01421585fc..a2e5bbad1b 100644 --- a/src/misc/win32_specific.c +++ b/src/misc/win32_specific.c @@ -1,16 +1,17 @@ /***************************************************************************** - * win32_specific.c: Win32 specific features + * win32_specific.c: Win32 specific features ***************************************************************************** * Copyright (C) 2001 VideoLAN - * $Id: win32_specific.c,v 1.1 2001/11/12 22:42:56 sam Exp $ + * $Id: win32_specific.c,v 1.22 2003/03/03 14:21:08 gbazin Exp $ * * Authors: Samuel Hocevar + * Gildas Bazin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -20,41 +21,122 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ -#include "defs.h" - #include /* strdup() */ #include /* free() */ -#include +#include -#include "common.h" -#include "threads.h" -#include "mtime.h" - -#include "win32_specific.h" +#if !defined( UNDER_CE ) +# include +# include +#endif /***************************************************************************** - * system_Init: initialize winsock. + * system_Init: initialize winsock and misc other things. *****************************************************************************/ -void system_Init( int *pi_argc, char *ppsz_argv[], char *ppsz_env[] ) +void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] ) { +#if !defined( UNDER_CE ) WSADATA Data; - int i_err; + + /* Get our full path */ + if( ppsz_argv[0] ) + { + char psz_path[MAX_PATH]; + char *psz_vlc; + + GetFullPathName( ppsz_argv[0], MAX_PATH, psz_path, &psz_vlc ); + + if( psz_vlc > psz_path && psz_vlc[-1] == '\\' ) + { + psz_vlc[-1] = '\0'; + p_this->p_libvlc->psz_vlcpath = strdup( psz_path ); + } + else + { + p_this->p_libvlc->psz_vlcpath = strdup( "" ); + } + } + else + { + p_this->p_libvlc->psz_vlcpath = strdup( "" ); + } + + /* Set the default file-translation mode */ + _fmode = _O_BINARY; /* WinSock Library Init. */ - i_err = WSAStartup( MAKEWORD( 1, 1 ), &Data ); + if( !WSAStartup( MAKEWORD( 2, 0 ), &Data ) ) + { + /* Confirm that the WinSock DLL supports 2.0.*/ + if( LOBYTE( Data.wVersion ) != 2 || HIBYTE( Data.wVersion ) != 0 ) + { + /* We could not find a suitable WinSock DLL. */ + WSACleanup( ); + } + else + { + /* Everything went ok. */ + return; + } + } - if( i_err ) + /* Let's try with WinSock 1.1 */ + if( !WSAStartup( MAKEWORD( 1, 1 ), &Data ) ) { - fprintf( stderr, "error: can't initiate WinSocks, error %i", i_err ); + /* Confirm that the WinSock DLL supports 1.1.*/ + if( LOBYTE( Data.wVersion ) != 1 || HIBYTE( Data.wVersion ) != 1 ) + { + /* We could not find a suitable WinSock DLL. */ + WSACleanup( ); + } + else + { + /* Everything went ok. */ + return; + } } + + fprintf( stderr, "error: can't initialize WinSocks\n" ); + + return; + +#endif +} + +/***************************************************************************** + * system_Configure: check for system specific configuration options. + *****************************************************************************/ +void system_Configure( vlc_t *p_this ) +{ +#if !defined( UNDER_CE ) + p_this->p_libvlc->b_fast_mutex = config_GetInt( p_this, "fast-mutex" ); + p_this->p_libvlc->i_win9x_cv = config_GetInt( p_this, "win9x-cv-method" ); + + /* Raise default priority of the current process */ +#ifndef ABOVE_NORMAL_PRIORITY_CLASS +# define ABOVE_NORMAL_PRIORITY_CLASS 0x00008000 +#endif + if( !SetPriorityClass( GetCurrentProcess(), + ABOVE_NORMAL_PRIORITY_CLASS ) ) + { + if( !SetPriorityClass( GetCurrentProcess(), + HIGH_PRIORITY_CLASS ) ) + msg_Dbg( p_this, "can't raise process priority" ); + else + msg_Dbg( p_this, "raised process priority" ); + } + else + msg_Dbg( p_this, "raised process priority" ); +#endif } /***************************************************************************** * system_End: terminate winsock. *****************************************************************************/ -void system_End( void ) +void system_End( vlc_t *p_this ) { +#if !defined( UNDER_CE ) WSACleanup(); +#endif } -