Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Drawing/System.Drawing.Imaging/ImageLockMode.cs')
-rw-r--r--mcs/class/System.Drawing/System.Drawing.Imaging/ImageLockMode.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/class/System.Drawing/System.Drawing.Imaging/ImageLockMode.cs b/mcs/class/System.Drawing/System.Drawing.Imaging/ImageLockMode.cs
deleted file mode 100644
index 14b720acb2b..00000000000
--- a/mcs/class/System.Drawing/System.Drawing.Imaging/ImageLockMode.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-//
-// System.Drawing.Imaging.ImageLockMode.cs
-//
-// (C) 2002 Ximian, Inc. http://www.ximian.com
-// Author: Dennis Hayes (dennish@raytek.com)
-//
-using System;
-namespace System.Drawing.Imaging
-{
- public enum ImageLockMode {
- ReadOnly = 1,
- ReadWrite = 3,
- UserInputBuffer = 4,
- WriteOnly = 2
- }
-}