X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_update.h;h=1fd5a8593aca6d0f06b34debf5564c207abd8727;hb=12ade3e3bc975d5426ba4af155b7372c31093b31;hp=d53d898a6f9bded53fa702de57a420dde240051c;hpb=c0f4bfc5d85c96cf29f4bd05fa5fa42eb344d1dc;p=vlc diff --git a/include/vlc_update.h b/include/vlc_update.h index d53d898a6f..1fd5a8593a 100644 --- a/include/vlc_update.h +++ b/include/vlc_update.h @@ -25,6 +25,11 @@ #ifndef VLC_UPDATE_H #define VLC_UPDATE_H +/** + * \file + * This file defines update API in vlc + */ + /** * \defgroup update Update * @@ -46,20 +51,17 @@ 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 ) ) - -VLC_EXPORT( update_t *, __update_New, ( vlc_object_t * ) ); +VLC_EXPORT( update_t *, update_New, ( vlc_object_t * ) ); +#define update_New( a ) update_New( VLC_OBJECT( a ) ) 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 *, const char* ) ); VLC_EXPORT( update_release_t*, update_GetRelease, ( update_t * ) ); -VLC_EXPORT( void, update_WaitDownload, ( update_t * ) ); /** * @}