ttml demux: fix parseHead fonction
[vlc.git] / include / vlc_update.h
blobdf7440546eed36181452b72d16dba5ae48bb4286
1 /*****************************************************************************
2 * vlc_update.h: VLC update download
3 *****************************************************************************
4 * Copyright © 2005-2007 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
8 * Rafaël Carré <funman@videolanorg>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser 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.
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 Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef VLC_UPDATE_H
26 #define VLC_UPDATE_H
28 /**
29 * \defgroup update Software updates
30 * \ingroup interface
31 * Over-the-air VLC software updates
32 * @{
33 * \file
34 *VLC software update interface
37 #ifdef UPDATE_CHECK
39 /**
40 * Describes an update VLC release number
42 struct update_release_t
44 int i_major; ///< Version major
45 int i_minor; ///< Version minor
46 int i_revision; ///< Version revision
47 int i_extra; ///< Version extra
48 char* psz_url; ///< Download URL
49 char* psz_desc; ///< Release description
52 #endif /* UPDATE_CHECK */
54 typedef struct update_release_t update_release_t;
56 VLC_API update_t * update_New( vlc_object_t * );
57 #define update_New( a ) update_New( VLC_OBJECT( a ) )
58 VLC_API void update_Delete( update_t * );
59 VLC_API void update_Check( update_t *, void (*callback)( void*, bool ), void * );
60 VLC_API bool update_NeedUpgrade( update_t * );
61 VLC_API void update_Download( update_t *, const char* );
62 VLC_API update_release_t* update_GetRelease( update_t * );
64 /**
65 * @}
68 #endif /* _VLC_UPDATE_H */