summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/NativeList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/interop/NativeList.cs')
-rw-r--r--win/C#/interop/NativeList.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/win/C#/interop/NativeList.cs b/win/C#/interop/NativeList.cs
deleted file mode 100644
index c16c09950..000000000
--- a/win/C#/interop/NativeList.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-namespace HandBrake.Interop
-{
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- /// <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;
- }
- }
- }
-}