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:
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,
+ };
+}