]> git.sesse.net Git - vlc/blobdiff - include/vlc_update.h
input: Expose input_ItemHasErrorWhenReading.
[vlc] / include / vlc_update.h
index 3abc0118b73bc98bb18a8158eb72d62d66adeea3..4bc7fd308d5c9d766714a6b67b1402220bb7c8ae 100644 (file)
  * 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
 
-#include <vlc/vlc.h>
-
 /**
  * \defgroup update Update
  *
@@ -63,7 +57,7 @@ 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 * ) );
 
 /**