ExternalAddress.st
changeset 1960 0425b66d2226
parent 1317 cc737e0fdf48
child 2472 00e7a1b3b07f
equal deleted inserted replaced
1959:f3b770b1059f 1960:0425b66d2226
    48     creation/use is mostly in primitive C-code via 
    48     creation/use is mostly in primitive C-code via 
    49        __MKEXTERNALADDRESS(voidPtr) and __ExternalAddressVal(obj).
    49        __MKEXTERNALADDRESS(voidPtr) and __ExternalAddressVal(obj).
    50 
    50 
    51     ExternallAddresses are much like ExternalBytes - however, the latter
    51     ExternallAddresses are much like ExternalBytes - however, the latter
    52     allow you to access bytes via indexed at:/at:put: messages.
    52     allow you to access bytes via indexed at:/at:put: messages.
    53     ExternallAddresses do not allow such accesses (they are meant to remain
    53     ExternalAddresses do not allow such accesses (they are meant to remain
    54     anonymous).
    54     anonymous).
    55 
    55 
    56     [author:]
    56     [author:]
    57         Claus Gittinger
    57         Claus Gittinger
    58 
    58 
   165 ! !
   165 ! !
   166 
   166 
   167 !ExternalAddress class methodsFor:'documentation'!
   167 !ExternalAddress class methodsFor:'documentation'!
   168 
   168 
   169 version
   169 version
   170     ^ '$Header: /cvs/stx/stx/libbasic/ExternalAddress.st,v 1.5 1996-04-27 18:11:26 cg Exp $'
   170     ^ '$Header: /cvs/stx/stx/libbasic/ExternalAddress.st,v 1.6 1996-11-11 11:31:08 cg Exp $'
   171 ! !
   171 ! !