'From Squeak3.2gamma of 12 January 2002 [latest update: #4861] on 11 May 2002 at 6:56:31 pm'! "Change Set: Win32FFIFix-ar Date: 11 May 2002 Author: Andreas Raab Fixes a problem with handle declaration in Win32."! !Win32Handle class methodsFor: 'accessing' stamp: 'ar 5/11/2002 18:54'! fields "Win32Handle defineFields" "The following really means typedef void* Win32Handle; " ^#(nil 'ulong') "an opaque 32bit handle"! ! "Postscript: Recompile Win32Handle" Win32Handle compileAllFields. ExternalStructure allSubclassesDo:[:cls| cls compileAll]. !