Eric Pouech <[EMAIL PROTECTED]> writes:

> uhh why do you want to do that ? isn't current handle handling (ooch, excuse
> my bad English) what Windows do: you cannot reuse a handle from one process
> to the other  ?

Yes, this will remain true for Win32 processes, since they will be in
separate address spaces. But Win16 processes will all run inside a
single Win32 process (from the point of view of the server at least)
so their handles will be shared. This will make it possible to store
handles in global variables without having to worry about making them
global (which is a pretty broken concept in the first place).

-- 
Alexandre Julliard
[EMAIL PROTECTED]

Reply via email to