Exemplo n.º 1
0
        public VlcObject FindObject(VlcObjectType type, VlcObjectSearchMode mode)
        {
            if (_vlcObject.IsInvalid)
            {
                throw new ApplicationException("VLC object is NULL");
            }

            VlcObject o = new VlcObject(__vlc_object_find(_vlcObject, type, mode));

            return(o);
        }
Exemplo n.º 2
0
 private static extern VlcListHandle __vlc_list_find(VlcObjectHandle p_object, VlcObjectType objectType, VlcObjectSearchMode mode);