# HG changeset patch # User Claus Gittinger # Date 1169162489 -3600 # Node ID d6b6b01525f5b315a0c29ee98d6637a0c4962315 # Parent 972d0164125a66f4993912ff96543a05ea514dc2 *** empty log message *** diff -r 972d0164125a -r d6b6b01525f5 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 /* */ @@ -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 $' ! !