X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_update.h;h=1bb91f90fadfe2037b178bc208d494614c4b4851;hb=937b3831a67f54e391376adad7d05dc19ee36675;hp=b9dbda8c26a58666b23679531463edf45efb5e1d;hpb=85f5092ee68d13fd4056848d5a2124e753fc69f5;p=vlc diff --git a/include/vlc_update.h b/include/vlc_update.h index b9dbda8c26..1bb91f90fa 100644 --- a/include/vlc_update.h +++ b/include/vlc_update.h @@ -22,16 +22,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ -#if !defined( __LIBVLC__ ) - #error You are not libvlc or one of its plugins. You cannot include this file -#endif +#ifndef VLC_UPDATE_H +#define VLC_UPDATE_H -#ifdef UPDATE_CHECK - -#ifndef _VLC_UPDATE_H -#define _VLC_UPDATE_H - -#include +/** + * \file + * This file defines update API in vlc + */ /** * \defgroup update Update @@ -39,6 +36,8 @@ * @{ */ +#ifdef UPDATE_CHECK + /** * Describes an update VLC release number */ @@ -52,6 +51,8 @@ struct update_release_t char* psz_desc; ///< Release description }; +#endif /* UPDATE_CHECK */ + typedef struct update_release_t update_release_t; #define update_New( a ) __update_New( VLC_OBJECT( a ) ) @@ -60,13 +61,12 @@ VLC_EXPORT( update_t *, __update_New, ( vlc_object_t * ) ); VLC_EXPORT( void, update_Delete, ( update_t * ) ); VLC_EXPORT( void, update_Check, ( update_t *, void (*callback)( void*, bool ), void * ) ); VLC_EXPORT( bool, update_NeedUpgrade, ( update_t * ) ); -VLC_EXPORT( void, update_Download, ( update_t *, char* ) ); +VLC_EXPORT( void, update_Download, ( update_t *, const char* ) ); VLC_EXPORT( update_release_t*, update_GetRelease, ( update_t * ) ); +VLC_EXPORT( void, update_WaitDownload, ( update_t * ) ); /** * @} */ -#endif - -#endif +#endif /* _VLC_UPDATE_H */