X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_update.h;h=2c56ecfcc32e587c5da68e4d07719859e499b9f1;hb=98ad3f3cb54dba78cb1b5d2f5d84052b5274c430;hp=1bb91f90fadfe2037b178bc208d494614c4b4851;hpb=ebd800345f87349ff51971ae88c56cb439da4dcf;p=vlc diff --git a/include/vlc_update.h b/include/vlc_update.h index 1bb91f90fa..2c56ecfcc3 100644 --- a/include/vlc_update.h +++ b/include/vlc_update.h @@ -46,7 +46,7 @@ struct update_release_t int i_major; ///< Version major int i_minor; ///< Version minor int i_revision; ///< Version revision - unsigned char extra;///< Version extra + int i_extra; ///< Version extra char* psz_url; ///< Download URL char* psz_desc; ///< Release description }; @@ -55,15 +55,13 @@ struct update_release_t 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( 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 * ) ); +VLC_API update_t * update_New( vlc_object_t * ); +#define update_New( a ) update_New( VLC_OBJECT( a ) ) +VLC_API void update_Delete( update_t * ); +VLC_API void update_Check( update_t *, void (*callback)( void*, bool ), void * ); +VLC_API bool update_NeedUpgrade( update_t * ); +VLC_API void update_Download( update_t *, const char* ); +VLC_API update_release_t* update_GetRelease( update_t * ); /** * @}