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

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

	/// <summary>
	/// </summary>
	public enum SessionEndReasons : int {
		Logoff = 1,
		SystemShutdown = 2,
	};
}