2006-02-03 01:29:06 +08:00
|
|
|
/*****************************************************************************
|
2008-05-27 18:33:47 +08:00
|
|
|
* vlc_update.h: VLC update download
|
2006-02-03 01:29:06 +08:00
|
|
|
*****************************************************************************
|
2007-12-15 01:53:27 +08:00
|
|
|
* Copyright © 2005-2007 the VideoLAN team
|
2007-11-26 22:00:39 +08:00
|
|
|
* $Id$
|
2006-02-03 01:29:06 +08:00
|
|
|
*
|
|
|
|
* Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
|
2007-12-15 01:53:27 +08:00
|
|
|
* Rafaël Carré <funman@videolanorg>
|
2006-02-03 01:29:06 +08:00
|
|
|
*
|
|
|
|
* 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 release 2 of the License, or
|
|
|
|
* (at your option) any later release.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2006-12-03 21:48:21 +08:00
|
|
|
#if !defined( __LIBVLC__ )
|
|
|
|
#error You are not libvlc or one of its plugins. You cannot include this file
|
|
|
|
#endif
|
|
|
|
|
2007-12-15 01:53:27 +08:00
|
|
|
#ifdef UPDATE_CHECK
|
|
|
|
|
2006-02-03 01:29:06 +08:00
|
|
|
#ifndef _VLC_UPDATE_H
|
|
|
|
#define _VLC_UPDATE_H
|
|
|
|
|
|
|
|
#include <vlc/vlc.h>
|
|
|
|
|
2006-02-03 07:31:42 +08:00
|
|
|
/**
|
|
|
|
* \defgroup update Update
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2006-02-03 01:29:06 +08:00
|
|
|
/**
|
|
|
|
* Describes an update VLC release number
|
|
|
|
*/
|
|
|
|
struct update_release_t
|
|
|
|
{
|
2007-12-11 07:12:45 +08:00
|
|
|
int i_major; ///< Version major
|
|
|
|
int i_minor; ///< Version minor
|
|
|
|
int i_revision; ///< Version revision
|
2007-12-19 07:30:00 +08:00
|
|
|
unsigned char extra;///< Version extra
|
2007-12-11 07:12:45 +08:00
|
|
|
char* psz_url; ///< Download URL
|
|
|
|
char* psz_desc; ///< Release description
|
2006-02-03 01:29:06 +08:00
|
|
|
};
|
|
|
|
|
2008-05-27 18:33:47 +08:00
|
|
|
typedef struct update_release_t update_release_t;
|
2006-02-03 01:29:06 +08:00
|
|
|
|
|
|
|
#define update_New( a ) __update_New( VLC_OBJECT( a ) )
|
|
|
|
|
|
|
|
VLC_EXPORT( update_t *, __update_New, ( vlc_object_t * ) );
|
2007-12-11 07:12:45 +08:00
|
|
|
VLC_EXPORT( void, update_Delete, ( update_t * ) );
|
2008-04-14 06:08:29 +08:00
|
|
|
VLC_EXPORT( void, update_Check, ( update_t *, void (*callback)( void*, bool ), void * ) );
|
2008-04-16 03:41:37 +08:00
|
|
|
VLC_EXPORT( bool, update_NeedUpgrade, ( update_t * ) );
|
2007-12-18 23:51:29 +08:00
|
|
|
VLC_EXPORT( void, update_Download, ( update_t *, char* ) );
|
2008-05-27 18:33:47 +08:00
|
|
|
VLC_EXPORT( update_release_t*, update_GetRelease, ( update_t * ) );
|
2006-02-03 01:29:06 +08:00
|
|
|
|
2006-02-03 07:31:42 +08:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2006-02-03 01:29:06 +08:00
|
|
|
#endif
|
2007-12-15 01:53:27 +08:00
|
|
|
|
|
|
|
#endif
|