*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Tue, 21 Feb 2006 13:01:02 +0100
changeset 9172 55600e1aa6d6
parent 9171 b615db10e3e6
child 9173 312ada56e4a9
*** empty log message ***
Win32Handle.st
--- a/Win32Handle.st	Tue Feb 21 11:45:42 2006 +0100
+++ b/Win32Handle.st	Tue Feb 21 13:01:02 2006 +0100
@@ -19,28 +19,6 @@
 	category:'OS-Windows'
 !
 
-!Win32Handle class methodsFor:'documentation'!
-
-copyright
-"
- COPYRIGHT (c) 2004 by eXept Software AG
-              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
- inclusion of the above copyright notice.   This software may not
- be provided or otherwise made available to, or used by, any
- other person.  No title to or ownership of the software is
- hereby transferred.
-"
-!
-
-documentation
-"
-    I represent a non-I/O HANDLE.
-"
-! !
-
 !Win32Handle primitiveDefinitions!
 %{
 
@@ -181,9 +159,36 @@
 %}
 ! !
 
+!Win32Handle class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2004 by eXept Software AG
+              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
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    I represent a non-I/O HANDLE.
+"
+! !
 
 !Win32Handle methodsFor:'release'!
 
+close
+    "close the handle"
+
+    self closeHandle
+!
+
 closeHandle
     "close the handle"
 
@@ -206,5 +211,5 @@
 !Win32Handle class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32Handle.st,v 1.5 2006-02-14 14:53:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32Handle.st,v 1.6 2006-02-21 12:01:02 cg Exp $'
 ! !