I���m sorry��� I do not understand. This is solved in UFFI since some months, and Torsten���s OSWindow uses it.��
UFFI provides��FFIConstantHandle type to deal with windows HANDLE types, as comment says:��I represent a constant HANDLE, as described in ��*Windows MSDN>https://msdn.microsoft.com/en-us/library/windows/desktop/ms724457(v=vs.85).aspx*A ==HANDLE== is a special kind of external object who is accessed through numbers, therefore and ==ExternalAddress== is not appropriate to describe it (since they are constants and external addresses represents disposable spaces from memory).Is not clear this is necessary outside Windows, but according to documentation they are somekind analogous to unix's File Descriptors (but with some remarkable diferences, as documented *here>http://lackingrhoticity.blogspot.fr/2015/05/passing-fds-handles-between-processes.html*.Example:��[[[HWND := #FFIConstantHandle.self ffiCall: #(HWND GetActiveWindow())]]]
is there anything I���m missing?
Esteban