Skip to content

Commit

Permalink
Improved class comment
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Nov 13, 2018
1 parent d74ab34 commit 40728e0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/System-Platforms/Win32WideString.class.st
Expand Up @@ -3,6 +3,11 @@ I represent a Win32 wide string, supporting non-ascii characters.
I manage the conversion between Pharo strings and Windows strings.
(Win32String fromString: 'âùö') asString = 'âùö'
! Implementation Details
I'm on purpose a subclass of ExternalObject and not FFIExternalObject.
The rationale is that the kernel should not be tied to UFFI (which depends on the compiler) to do simple ffi calls. Because of this I implement on #handle, #handle: and #asExternalTypeOn: to be compatible with UFFI external structures.
"
Class {
#name : #Win32WideString,
Expand Down

0 comments on commit 40728e0

Please sign in to comment.