]> git.sesse.net Git - vlc/blobdiff - src/misc/darwin_specific.m
* Coding style cleanup: removed tabs and trailing spaces.
[vlc] / src / misc / darwin_specific.m
index ced3d23ff09a398ca45e985b5bb6dff42842488c..b40a49140fc545ad9c488433f07e5d3a92f1df4e 100644 (file)
@@ -1,17 +1,17 @@
 /*****************************************************************************
- * darwin_specific.m: Darwin specific features 
+ * darwin_specific.m: Darwin specific features
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: darwin_specific.m,v 1.13 2003/04/08 08:36:00 massiot Exp $
+ * $Id: darwin_specific.m,v 1.17 2003/12/22 14:32:56 sam Exp $
  *
- * Authors: Samuel Hocevar <sam@zoy.org>
+ * Authors: Sam Hocevar <sam@zoy.org>
  *          Christophe Massiot <massiot@via.ecp.fr>
  *
  * 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
@@ -43,16 +43,18 @@ static int FindLanguage( const char * psz_lang )
         "German", "de",
         "British", "en_GB",
         "English", "en",
+        "Spanish", "es",
         "French", "fr",
+        "Hungarian", "hu",
         "Italian", "it",
-
         "Japanese", "ja",
         "Dutch", "nl",
         "Norwegian", "no",
         "Polish", "pl",
+        "Brazillian Portuguese", "pt_BR",
         "Russian", "ru",
         "Swedish", "sv",
-       NULL
+        NULL
     };
 
     for( ppsz_parser = ppsz_all ; ppsz_parser[0] ; ppsz_parser += 2 )
@@ -95,20 +97,20 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
         NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
 
         /* Retrieve user's preferences. */
-        NSUserDefaults * o_defs = [NSUserDefaults standardUserDefaults]; 
-        NSArray * o_languages = [o_defs objectForKey:@"AppleLanguages"]; 
-        NSEnumerator * o_enumerator = [o_languages objectEnumerator]; 
+        NSUserDefaults * o_defs = [NSUserDefaults standardUserDefaults];
+        NSArray * o_languages = [o_defs objectForKey:@"AppleLanguages"];
+        NSEnumerator * o_enumerator = [o_languages objectEnumerator];
         NSString * o_lang;
 
         while ( (o_lang = [o_enumerator nextObject]) )
-        { 
+        {
             const char * psz_string = [o_lang lossyCString];
             if ( FindLanguage( psz_string ) )
             {
                 break;
             }
         }
-        
+
         [o_pool release];
     }
 }
@@ -116,7 +118,7 @@ void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
 /*****************************************************************************
  * system_Configure: check for system specific configuration options.
  *****************************************************************************/
-void system_Configure( vlc_t *p_this )
+void system_Configure( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
 {
 
 }