Interface libvlc_dialog_update_progress_cb
-
- All Superinterfaces:
com.sun.jna.Callback
public interface libvlc_dialog_update_progress_cb extends com.sun.jna.Callback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcallback(com.sun.jna.Pointer p_data, libvlc_dialog_id p_id, float f_position, String psz_text)Called when a progress dialog needs to be updated
-
-
-
Method Detail
-
callback
void callback(com.sun.jna.Pointer p_data, libvlc_dialog_id p_id, float f_position, String psz_text)Called when a progress dialog needs to be updated- Parameters:
p_data- opaque pointer for the callbackp_id- id of the dialogf_position- osition of the progress bar (between 0.0 and 1.0)psz_text- new text of the progress dialog
-
-