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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * version.c: LibVLC version infos
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2008 the VideoLAN team
  5.  *
  6.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  7.  *          Samuel Hocevar <sam@zoy.org>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *          Derk-Jan Hartman <hartman at videolan dot org>
  10.  *          Rémi Denis-Courmont <rem # videolan : org>
  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 <vlc_common.h>
  30. /*****************************************************************************
  31.  * VLC_Version: return the libvlc version.
  32.  *****************************************************************************
  33.  * This function returns full version string (numeric version and codename).
  34.  *****************************************************************************/
  35. char const * VLC_Version( void )
  36. {
  37.     return VERSION_MESSAGE;
  38. }
  39. /*****************************************************************************
  40.  * VLC_CompileBy, VLC_CompileHost, VLC_CompileDomain,
  41.  * VLC_Compiler, VLC_Changeset
  42.  *****************************************************************************/
  43. #define DECLARE_VLC_VERSION( func, var )                                    
  44. char const * VLC_##func ( void )                                            
  45. {                                                                           
  46.     return VLC_##var ;                                                      
  47. }
  48. DECLARE_VLC_VERSION( CompileBy, COMPILE_BY );
  49. DECLARE_VLC_VERSION( CompileHost, COMPILE_HOST );
  50. DECLARE_VLC_VERSION( CompileDomain, COMPILE_DOMAIN );
  51. DECLARE_VLC_VERSION( Compiler, COMPILER );