forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibVLCLibrary.MediaList.cs
140 lines (106 loc) · 5.28 KB
/
LibVLCLibrary.MediaList.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
////////////////////////////////////////////////////////////////////////////////
//
// LibVLCLibrary.MediaList.cs - This file is part of LibVLC.NET.
//
// Copyright (C) 2011 Boris Richter <[email protected]>
//
// ==========================================================================
//
// LibVLC.NET is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 2.1 of the License, or (at
// your option) any later version.
//
// LibVLC.NET is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
// License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with LibVLC.NET; if not, see http://www.gnu.org/licenses/.
//
// ==========================================================================
//
// $LastChangedRevision$
// $LastChangedDate$
// $LastChangedBy$
//
////////////////////////////////////////////////////////////////////////////////
using System;
using System.Runtime.InteropServices;
using System.Text;
using System.Linq;
using System.Collections.Generic;
#pragma warning disable 1591
namespace LibVLC.NET
{
//****************************************************************************
partial class LibVLCLibrary
{
//==========================================================================
// LIBVLC_API void libvlc_media_list_release(libvlc_media_list_t* p_ml)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void libvlc_media_list_release_signature(IntPtr p_ml);
//==========================================================================
private readonly libvlc_media_list_release_signature m_libvlc_media_list_release;
//==========================================================================
public void libvlc_media_list_release(IntPtr p_ml)
{
VerifyAccess();
m_libvlc_media_list_release(p_ml);
}
//==========================================================================
// LIBVLC_API void libvlc_media_list_lock (libvlc_media_list_t *p_ml)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void libvlc_media_list_lock_signature(IntPtr p_ml);
//==========================================================================
private readonly libvlc_media_list_lock_signature m_libvlc_media_list_lock;
//==========================================================================
public void libvlc_media_list_lock(IntPtr p_ml)
{
VerifyAccess();
m_libvlc_media_list_lock(p_ml);
}
//==========================================================================
// LIBVLC_API void libvlc_media_list_unlock ( libvlc_media_list_t * p_ml )
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate void libvlc_media_list_unlock_signature(IntPtr p_ml);
//==========================================================================
private readonly libvlc_media_list_unlock_signature m_libvlc_media_list_unlock;
//==========================================================================
public void libvlc_media_list_unlock(IntPtr p_ml)
{
VerifyAccess();
m_libvlc_media_list_unlock(p_ml);
}
//==========================================================================
// LIBVLC_API int libvlc_media_list_count ( libvlc_media_list_t * p_ml )
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate int libvlc_media_list_count_signature(IntPtr p_ml);
//==========================================================================
private readonly libvlc_media_list_count_signature m_libvlc_media_list_count;
//==========================================================================
public int libvlc_media_list_count(IntPtr p_ml)
{
VerifyAccess();
return m_libvlc_media_list_count(p_ml);
}
//==========================================================================
// LIBVLC_API libvlc_media_t* libvlc_media_list_item_at_index(libvlc_media_list_t * p_ml, int i_pos)
//==========================================================================
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
private delegate IntPtr libvlc_media_list_item_at_index_signature(IntPtr p_ml, int i_pos);
//==========================================================================
private readonly libvlc_media_list_item_at_index_signature m_libvlc_media_list_item_at_index;
//==========================================================================
public IntPtr libvlc_media_list_item_at_index(IntPtr p_ml, int i_pos)
{
VerifyAccess();
return m_libvlc_media_list_item_at_index(p_ml, i_pos);
}
} // class LibVLCLibrary
}