*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 19 Jan 2007 00:21:29 +0100
changeset 10340 d6b6b01525f5
parent 10339 972d0164125a
child 10341 5138e7faf10b
*** empty log message ***
Win32Handle.st
--- a/Win32Handle.st	Fri Jan 19 00:20:51 2007 +0100
+++ b/Win32Handle.st	Fri Jan 19 00:21:29 2007 +0100
@@ -1,6 +1,6 @@
 "
  COPYRIGHT (c) 2004 by eXept Software AG
-              All Rights Reserved
+	      All Rights Reserved
 
  This software is furnished under a license and may be used
  only in accordance with the terms of that license and with the
@@ -74,6 +74,7 @@
 # undef Delay
 # undef Message
 # undef Process
+# undef Processor
 
 # include <stdarg.h> /* */
 
@@ -149,6 +150,9 @@
 # ifdef __DEF_Process
 #  define Process __DEF_Process
 # endif
+# ifdef __DEF_Processor
+#  define Processor __DEF_Processor
+# endif
 
 # define INT int
 
@@ -164,7 +168,7 @@
 copyright
 "
  COPYRIGHT (c) 2004 by eXept Software AG
-              All Rights Reserved
+	      All Rights Reserved
 
  This software is furnished under a license and may be used
  only in accordance with the terms of that license and with the
@@ -196,8 +200,8 @@
     HANDLE h = _HANDLEVal(self);
 
     if (h) {
-        __externalAddressVal(self) = (HANDLE)0;
-        CloseHandle(h);
+	__externalAddressVal(self) = (HANDLE)0;
+	CloseHandle(h);
     }
 %}.
 !
@@ -211,5 +215,5 @@
 !Win32Handle class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32Handle.st,v 1.6 2006-02-21 12:01:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32Handle.st,v 1.7 2007-01-18 23:21:29 cg Exp $'
 ! !