blob: adc74c456613646f781b90bc4d761df84d0537aa (
plain)
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="NativeList.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Represents a HandBrake style native list.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop
{
using System;
using System.Collections.Generic;
/// <summary>
/// Represents a HandBrake style native list.
/// </summary>
public class NativeList
{
/// <summary>
/// The list of native memory locations allocated for this list.
/// </summary>
private List<IntPtr> allocatedMemory = new List<IntPtr>();
/// <summary>
/// Gets or sets the pointer to the native list.
/// </summary>
public IntPtr ListPtr { get; set; }
/// <summary>
/// Gets the list of native memory locations allocated for this list.
/// </summary>
public List<IntPtr> AllocatedMemory
{
get
{
return allocatedMemory;
}
}
}
}
|