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