Interface libvlc_log_cb
-
- All Superinterfaces:
com.sun.jna.Callback
public interface libvlc_log_cb extends com.sun.jna.CallbackSpecification for a callback that handles native log messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlog(com.sun.jna.Pointer data, int level, libvlc_log_t ctx, String format, com.sun.jna.Pointer args)Callback prototype for LibVLC log message handler.
-
-
-
Method Detail
-
log
void log(com.sun.jna.Pointer data, int level, libvlc_log_t ctx, String format, com.sun.jna.Pointer args)Callback prototype for LibVLC log message handler.Log message handlers must be thread-safe.
- Parameters:
data- data pointer as given to libvlc_log_set()level- message levelctx- message context (meta-informations about the message)format- printf() format string (as defined by ISO C11)args- variable argument list for the format
-
-