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

ImageLockMode.cs « System.Drawing.Imaging « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14b720acb2b0798b5450abc7de4bdef02de2b971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// 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
	}
}