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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Roith <johannes@mono-cvs.ximian.com>2002-09-15 20:17:22 +0400
committerJohannes Roith <johannes@mono-cvs.ximian.com>2002-09-15 20:17:22 +0400
commit8cfefa51291967c3c6fb0a50bdf180c0931e165c (patch)
tree0a782244fc322f089712a847be4fa13446324995 /mcs/class/System/Microsoft.Win32/PowerModes.cs
parent9819ad6367cc467f6c1feb6d20283be554ce934a (diff)
initial import
svn path=/trunk/mcs/; revision=7476
Diffstat (limited to 'mcs/class/System/Microsoft.Win32/PowerModes.cs')
-rw-r--r--mcs/class/System/Microsoft.Win32/PowerModes.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/class/System/Microsoft.Win32/PowerModes.cs b/mcs/class/System/Microsoft.Win32/PowerModes.cs
new file mode 100644
index 00000000000..80b17f6cec3
--- /dev/null
+++ b/mcs/class/System/Microsoft.Win32/PowerModes.cs
@@ -0,0 +1,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,
+ };
+}