Given a handle of type HWND is it possible to confirm that the handle represents a real window?
|
|
There is a function IsWindow which does exactly what you asked for.
Look at this link for more information. |
||
|
|
|
|
Generally no. By the time you've got confirmation that a Window is valid another process/thread my come along and remove it for you. |
||
|
|
|
|
Graham is right .. some time in race it is very tough to rely on IsWindow API |
||
|
|
