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

PowerModes.cs « Microsoft.Win32 « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80b17f6cec3c8c4b21e3a4721837c239b4e997db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// PowerModes.cs
//
// Author:
//  Johannes Roith (johannes@jroith.de)
//
// (C) 2002 Johannes Roith
//
namespace Microsoft.Win32 {

	/// <summary>
	/// </summary>
	public enum PowerModes : int {
		Resume = 1,
		StatusChange = 2,
		Suspend = 3,
	};
}