]> git.sesse.net Git - vlc/blob - src/misc/darwin_specific.c
* Italien translation, courtesy of Bruno <allevb@tin.it>,
[vlc] / src / misc / darwin_specific.c
1 /*****************************************************************************
2  * darwin_specific.c: Darwin specific features 
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: darwin_specific.c,v 1.16 2002/12/27 00:17:49 massiot Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23 #include <string.h>                                              /* strdup() */
24 #include <stdlib.h>                                                /* free() */
25
26 #include <vlc/vlc.h>
27
28 /*****************************************************************************
29  * Static vars
30  *****************************************************************************/
31 static char * psz_program_path;
32
33 /*****************************************************************************
34  * system_Init: fill in program path.
35  *****************************************************************************/
36 void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
37 {
38     char i_dummy;
39     char *p_char, *p_oldchar = &i_dummy;
40
41     /* Get the full program path and name */
42     p_char = psz_program_path = strdup( ppsz_argv[ 0 ] );
43
44     /* Remove trailing program name */
45     for( ; *p_char ; )
46     {
47         if( *p_char == '/' )
48         {
49             *p_oldchar = '/';
50             *p_char = '\0';
51             p_oldchar = p_char;
52         }
53
54         p_char++;
55     }
56 }
57
58 /*****************************************************************************
59  * system_Configure: check for system specific configuration options.
60  *****************************************************************************/
61 void system_Configure( vlc_t *p_this )
62 {
63
64 }
65
66 /*****************************************************************************
67  * system_End: free the program path.
68  *****************************************************************************/
69 void system_End( vlc_t *p_this )
70 {
71     free( psz_program_path );
72 }
73
74 /*****************************************************************************
75  * system_GetProgramPath: get the full path to the program.
76  *****************************************************************************/
77 char * system_GetProgramPath( void )
78 {
79     return( psz_program_path );
80 }
81