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

ColorMode.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: 91872fa62475de1c4b1c35f9cdb8d74b40489262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// System.Drawing.Imaging.ColorMode.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Imaging 
{
	public enum ColorMode {
		Argb32Mode = 0,
		Argb64Mode = 1
	}
}