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

ProcessWindowStyle.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00afa1ac9974c5fd62b8f0475ac75c40e2057a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Diagnostics.ProcessWindowStyle.cs
//
// Authors:
//	Dick Porter (dick@ximian.com)
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

namespace System.Diagnostics {
	[Serializable]
	public enum ProcessWindowStyle {
		Hidden=1,
		Maximized=3,
		Minimized=2,
		Normal=0,
	}
}