X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_update.h;h=5844b7cd456d7c0ceafe781c3ddbd69ded38aa90;hb=20692b9c217819421844394feeffd105fb12f00c;hp=3abc0118b73bc98bb18a8158eb72d62d66adeea3;hpb=9f7848e1796237eedafed575ee543a52977f5fda;p=vlc diff --git a/include/vlc_update.h b/include/vlc_update.h index 3abc0118b7..5844b7cd45 100644 --- a/include/vlc_update.h +++ b/include/vlc_update.h @@ -22,14 +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 -#ifndef _VLC_UPDATE_H -#define _VLC_UPDATE_H - -#include +/** + * \file + * This file defines update API in vlc + */ /** * \defgroup update Update @@ -52,19 +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( 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( update_release_t*, update_GetRelease, ( 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 * ); /** * @}