browser_open.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * browser_open.c: platform-independent opening of a web browser
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 Commonwealth Scientific and Industrial Research
  5.  *                    Organisation (CSIRO) Australia
  6.  * Copyright (C) 2004 the VideoLAN team
  7.  *
  8.  * $Id: 4295a5fe14249a12f743ddbce381446305cfacbc $
  9.  *
  10.  * Authors: Andre Pang <Andre.Pang@csiro.au>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include "browser_open.h"
  32. int browser_Open( const char *psz_url )
  33. {
  34. #ifdef __APPLE__
  35.     char *psz_open_commandline;
  36.     int i_ret;
  37.     if( asprintf( &psz_open_commandline, "/usr/bin/open %s", psz_url ) == -1 )
  38.         return -1;
  39.     i_ret = system( psz_open_commandline );
  40.     free( psz_open_commandline );
  41.     return i_ret;
  42. #elif defined( UNDER_CE )
  43.     return -1;
  44. #elif defined( WIN32 )
  45.     char *psz_open_commandline;
  46.     int i_ret;
  47.     if( asprintf( &psz_open_commandline, "explorer %s", psz_url ) == -1 )
  48.         return -1;
  49.     i_ret = system( psz_open_commandline );
  50.     free( psz_open_commandline );
  51.     return i_ret;
  52. #else
  53.     /* Assume we're on a UNIX of some sort */
  54.     char *psz_open_commandline;
  55.     int i_ret;
  56.     /* Debian uses www-browser */
  57.     if( asprintf( &psz_open_commandline, "www-browser %s", psz_url ) == -1 )
  58.         return -1;
  59.     i_ret = system( psz_open_commandline );
  60.     free( psz_open_commandline );
  61.     if( i_ret == 0 )
  62.         return 0;
  63.     /* Try mozilla */
  64.     if( asprintf( &psz_open_commandline, "mozilla %s", psz_url ) == -1 )
  65.         return -1;
  66.     i_ret = system( psz_open_commandline );
  67.     free( psz_open_commandline );
  68.     return i_ret;
  69. #endif
  70. }