]> git.sesse.net Git - vlc/blob - src/misc/win32_specific.c
* ./src/misc/beos_specific.cpp, ./src/misc/darwin_specific.m: removed
[vlc] / src / misc / win32_specific.c
1 /*****************************************************************************
2  * win32_specific.c: Win32 specific features
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: win32_specific.c,v 1.20 2003/01/19 03:16:24 sam Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24 #include <string.h>                                              /* strdup() */
25 #include <stdlib.h>                                                /* free() */
26
27 #include <vlc/vlc.h>
28
29 #if !defined( UNDER_CE )
30 #   include <fcntl.h>
31 #   include <winsock2.h>
32 #endif
33
34 /*****************************************************************************
35  * system_Init: initialize winsock and misc other things.
36  *****************************************************************************/
37 void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
38 {
39 #if !defined( UNDER_CE )
40     WSADATA Data;
41     int i_err;
42
43     /* WinSock Library Init. */
44     i_err = WSAStartup( MAKEWORD( 1, 1 ), &Data );
45
46     if( i_err )
47     {
48         fprintf( stderr, "error: can't initiate WinSocks, error %i\n", i_err );
49     }
50
51     /* Set the default file-translation mode */
52     _fmode = _O_BINARY;
53 #endif
54 }
55
56 /*****************************************************************************
57  * system_Configure: check for system specific configuration options.
58  *****************************************************************************/
59 void system_Configure( vlc_t *p_this )
60 {
61 #if !defined( UNDER_CE )
62     p_this->p_libvlc->b_fast_mutex = config_GetInt( p_this, "fast-mutex" );
63     p_this->p_libvlc->i_win9x_cv = config_GetInt( p_this, "win9x-cv-method" );
64
65     /* Raise default priority of the current process */
66 #ifndef ABOVE_NORMAL_PRIORITY_CLASS
67 #   define ABOVE_NORMAL_PRIORITY_CLASS 0x00008000
68 #endif
69     if( !SetPriorityClass( GetCurrentProcess(),
70                            ABOVE_NORMAL_PRIORITY_CLASS ) )
71     {
72         if( !SetPriorityClass( GetCurrentProcess(),
73                                HIGH_PRIORITY_CLASS ) )
74             msg_Dbg( p_this, "can't raise process priority" );
75         else
76             msg_Dbg( p_this, "raised process priority" );
77     }
78     else
79         msg_Dbg( p_this, "raised process priority" );
80 #endif
81 }
82
83 /*****************************************************************************
84  * system_End: terminate winsock.
85  *****************************************************************************/
86 void system_End( vlc_t *p_this )
87 {
88 #if !defined( UNDER_CE )
89     WSACleanup();
90 #endif
91 }