diff dwt/internal/win32/OS.d @ 77:205350493476

Accessible linkable dummy.
author Frank Benoit <benoit@tionex.de>
date Tue, 05 Feb 2008 14:31:31 +0100
parents f824f1836871
children b00303c762ac
line wrap: on
line diff
--- a/dwt/internal/win32/OS.d	Tue Feb 05 04:03:25 2008 +0100
+++ b/dwt/internal/win32/OS.d	Tue Feb 05 14:31:31 2008 +0100
@@ -37,6 +37,23 @@
 }
 
 
+/*
+Compile time versions
+    ANSI
+    WinCE
+
+    OS.IsUnicode
+    OS.IsWinCE
+
+    OS.IsHPC
+
+    OS.IsSP
+    OS.IsPPC
+    OS.IsWin95
+    OS.IsWinNT
+
+*/
+
 
 
 public class OS : C {
@@ -65,18 +82,19 @@
     public static BOOL IsWin95;
     public static BOOL IsWinNT;
 
-    version(WinCE){
+    version(WinCE) {
         public const static BOOL IsWinCE = true;
-        public static const BOOL IsHPC = false; //todo
-    }else{
+        public static const BOOL IsHPC   = false; //todo
+    }
+    else {
         public const static BOOL IsWinCE = false;
-        public static const BOOL IsHPC = false;
+        public static const BOOL IsHPC   = false;
     }
 
-    public static const BOOL IsPPC_ = false;
+    public static const BOOL IsPPC = false;
 
     // PORTING_FIXME, is it Windows WFSP?
-    public static const BOOL IsSP_ = false;
+    public static const BOOL IsSP = false;
 
     public static const BOOL IsDBLocale;