|
|
@@ -0,0 +1,22 @@
|
|
|
+//------------------------------------------------------------------------------
|
|
|
+//
|
|
|
+// System.PlatformID.cs
|
|
|
+//
|
|
|
+// Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
|
|
|
+//
|
|
|
+// Author: Jim Richardson, [email protected]
|
|
|
+// Created: Saturday, August 13, 2001
|
|
|
+//
|
|
|
+//------------------------------------------------------------------------------
|
|
|
+
|
|
|
+
|
|
|
+namespace System
|
|
|
+{
|
|
|
+ public enum PlatformID
|
|
|
+ { // TODO: determine what definitions to incorporate
|
|
|
+ // possibilities are quite varied
|
|
|
+ Win32NT,
|
|
|
+ Win32S,
|
|
|
+ Win32Windows
|
|
|
+ }
|
|
|
+}
|