ExternalLibraryFunction.st
changeset 22544 dc92d4e03fb9
parent 22163 b9b7b1d22df5
child 22556 cb550d205576
--- a/ExternalLibraryFunction.st	Thu Feb 15 19:03:54 2018 +0100
+++ b/ExternalLibraryFunction.st	Mon Feb 19 14:44:46 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2004 by eXept Software AG
 	      All Rights Reserved
@@ -202,7 +204,7 @@
   Synchronous vs. Asynchronous calls:
 
     by default, foreign function calls are synchronous, effectively blocking the whole ST/X system
-    (that is by purpose,´because most C-code is not prepared for being interrupted, and also, normal
+    (that is by purpose,´because most C-code is not prepared for being interrupted, and also, normal
      code is not prepared for a garbage collector to move objects around, while another C thread might
      access the data...).
     Therefore, the following will block all ST/X activity for 10 seconds
@@ -456,6 +458,12 @@
     ^ CALLTYPE_OLE
 
     "Modified: / 01-08-2006 / 13:44:57 / cg"
+!
+
+callTypeUNIX64
+    ^ CALLTYPE_UNIX64
+
+    "Modified: / 01-08-2006 / 13:44:57 / cg"
 ! !
 
 !ExternalLibraryFunction class methodsFor:'debugging'!