forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayList.cs
173 lines (139 loc) · 4.19 KB
/
PlayList.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#region license
/*
DirectShowLib - Provide access to DirectShow interfaces via .NET
Copyright (C) 2007
http://sourceforge.net/projects/directshownet/
This library 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.
This library 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 this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#endregion
using System;
using System.Runtime.InteropServices;
namespace DirectShowLib
{
#region Declarations
#if ALLOW_UNTESTED_INTERFACES
/// <summary>
/// From AMPlayListItemFlags
/// </summary>
public enum AMPlayListItemFlags
{
CanSkip = 0x1,
CanBind = 0x2
}
/// <summary>
/// From AMPlayListFlags
/// </summary>
[Flags]
public enum AMPlayListFlags
{
None = 0,
StartInScanMode = 0x1,
ForceBanner = 0x2
}
#endif
#endregion
#region Interfaces
#if ALLOW_UNTESTED_INTERFACES
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("56a868ff-0ad4-11ce-b03a-0020af0ba770"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IAMPlayListItem
{
int GetFlags(
out AMPlayListItemFlags pdwFlags
);
int GetSourceCount(
out int pdwSources
);
int GetSourceURL(
int dwSourceIndex,
[MarshalAs(UnmanagedType.BStr)] out string pbstrURL
);
int GetSourceStart(
int dwSourceIndex,
out long prtStart
);
int GetSourceDuration(
int dwSourceIndex,
out long prtDuration
);
int GetSourceStartMarker(
int dwSourceIndex,
out int pdwMarker
);
int GetSourceEndMarker(
int dwSourceIndex,
out int pdwMarker
);
int GetSourceStartMarkerName(
int dwSourceIndex,
[MarshalAs(UnmanagedType.BStr)] out string pbstrStartMarker
);
int GetSourceEndMarkerName(
int dwSourceIndex,
[MarshalAs(UnmanagedType.BStr)] out string pbstrEndMarker
);
int GetLinkURL(
[MarshalAs(UnmanagedType.BStr)] out string pbstrURL);
int GetScanDuration(
int dwSourceIndex,
out long prtScanDuration
);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("56a868fe-0ad4-11ce-b03a-0020af0ba770"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IAMPlayList
{
int GetFlags(
out AMPlayListFlags pdwFlags
);
int GetItemCount(
out int pdwItems
);
int GetItem(
int dwItemIndex,
out IAMPlayListItem ppItem
);
int GetNamedEvent(
string pwszEventName,
int dwItemIndex,
out IAMPlayListItem ppItem,
out AMPlayListItemFlags pdwFlags
);
int GetRepeatInfo(
out int pdwRepeatCount,
out int pdwRepeatStart,
out int pdwRepeatEnd
);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("4C437B91-6E9E-11d1-A704-006097C4E476"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ISpecifyParticularPages
{
int GetPages(
[In, MarshalAs(UnmanagedType.LPStruct)] Guid guidWhatPages,
out DsCAUUID pPages
);
}
[ComImport, SuppressUnmanagedCodeSecurity,
Guid("02EF04DD-7580-11d1-BECE-00C04FB6E937"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IAMRebuild
{
int RebuildNow( );
};
#endif
#endregion
}