A very simple question: if I create a HANDLE
in the app1.exe file and get the value 0x01
, is this value globally unique?
Or it is possible that when some other process creates a HANDLE
, which also has a value of 0x01
.
If they are not unique, then what other constructor can I use to get a unique identifier that is compatible with descriptors (such that it will be impossible or unlikely that a HANDLE
with this identifier is created elsewhere).
source share