X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_dialog.h;h=8d79f05d30795399a41962caefd92fca9379f447;hb=4f3de686e8d9c8d8639417183dc4cb53a35648ec;hp=4b99ce766b39dba802108f8da62b0f9f7e6fc0c6;hpb=afacc88aab72550887cbe868e7d7f17b1d3baabd;p=vlc diff --git a/include/vlc_dialog.h b/include/vlc_dialog.h index 4b99ce766b..8d79f05d30 100644 --- a/include/vlc_dialog.h +++ b/include/vlc_dialog.h @@ -101,14 +101,13 @@ typedef struct dialog_progress_bar_t const char *message; const char *cancel; /* Permanent parameters */ - vlc_mutex_t lock; void (*pf_update) (void *, const char *, float); bool (*pf_check) (void *); void (*pf_destroy) (void *); void *p_sys; } dialog_progress_bar_t; -VLC_EXPORT( dialog_progress_bar_t *, dialog_ProgressCreate, (vlc_object_t *, const char *, const char *, const char *) ); +VLC_EXPORT( dialog_progress_bar_t *, dialog_ProgressCreate, (vlc_object_t *, const char *, const char *, const char *) LIBVLC_USED ); #define dialog_ProgressCreate(o, t, m, c) \ dialog_ProgressCreate(VLC_OBJECT(o), t, m, c) VLC_EXPORT( void, dialog_ProgressDestroy, (dialog_progress_bar_t *) );