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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_update.h: VLC update download
  3.  *****************************************************************************
  4.  * Copyright © 2005-2007 the VideoLAN team
  5.  * $Id: 1bb91f90fadfe2037b178bc208d494614c4b4851 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
  8.  *          Rafaël Carré <funman@videolanorg>
  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 release 2 of the License, or
  13.  * (at your option) any later release.
  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. #ifndef VLC_UPDATE_H
  25. #define VLC_UPDATE_H
  26. /**
  27.  * file
  28.  * This file defines update API in vlc
  29.  */
  30. /**
  31.  * defgroup update Update
  32.  *
  33.  * @{
  34.  */
  35. #ifdef UPDATE_CHECK
  36. /**
  37.  * Describes an update VLC release number
  38.  */
  39. struct update_release_t
  40. {
  41.     int i_major;        ///< Version major
  42.     int i_minor;        ///< Version minor
  43.     int i_revision;     ///< Version revision
  44.     unsigned char extra;///< Version extra
  45.     char* psz_url;      ///< Download URL
  46.     char* psz_desc;     ///< Release description
  47. };
  48. #endif /* UPDATE_CHECK */
  49. typedef struct update_release_t update_release_t;
  50. #define update_New( a ) __update_New( VLC_OBJECT( a ) )
  51. VLC_EXPORT( update_t *, __update_New, ( vlc_object_t * ) );
  52. VLC_EXPORT( void, update_Delete, ( update_t * ) );
  53. VLC_EXPORT( void, update_Check, ( update_t *, void (*callback)( void*, bool ), void * ) );
  54. VLC_EXPORT( bool, update_NeedUpgrade, ( update_t * ) );
  55. VLC_EXPORT( void, update_Download, ( update_t *, const char* ) );
  56. VLC_EXPORT( update_release_t*, update_GetRelease, ( update_t * ) );
  57. VLC_EXPORT( void, update_WaitDownload, ( update_t * ) );
  58. /**
  59.  * @}
  60.  */
  61. #endif /* _VLC_UPDATE_H */