internal VlcLog(VlcInstanceHandle instance) { _instance = instance; _log = libvlc_log_open(_instance, _excp); VlcException.HandleVlcException(ref _excp); }
private static extern void libvlc_log_close(VlcLogHandle log, VlcExceptionHandle ex);
public VlcLogEnum(VlcLogHandle log) { this.log = log; get_iter(); }
private static extern uint libvlc_log_count(VlcLogHandle log, VlcExceptionHandle ex);
private static extern VlcLogEnumHandle libvlc_log_get_iterator(VlcLogHandle log, VlcExceptionHandle _excp);