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/UserPreferenceCategory.cs')
-rw-r--r--mcs/class/System/Microsoft.Win32/UserPreferenceCategory.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/mcs/class/System/Microsoft.Win32/UserPreferenceCategory.cs b/mcs/class/System/Microsoft.Win32/UserPreferenceCategory.cs
new file mode 100644
index 00000000000..ab2775d4735
--- /dev/null
+++ b/mcs/class/System/Microsoft.Win32/UserPreferenceCategory.cs
@@ -0,0 +1,28 @@
+//
+// UserPreferenceCategory.cs
+//
+// Author:
+// Johannes Roith (johannes@jroith.de)
+//
+// (C) 2002 Johannes Roith
+//
+namespace Microsoft.Win32 {
+
+ /// <summary>
+ /// </summary>
+ public enum UserPreferenceCategory : int {
+ Accessibility = 1,
+ Color = 2,
+ Desktop = 3,
+ General = 4,
+ Icon = 5,
+ Keyboard = 6,
+ Menu = 7,
+ Mouse = 8,
+ Policy = 0,
+ Power = 10,
+ Screensaver = 11,
+ Window = 12,
+ Locale = 13
+ };
+}