vote up 2 vote down star

Given a handle of type HWND is it possible to confirm that the handle represents a real window?

flag

3 Answers

vote up 6 vote down check

There is a function IsWindow which does exactly what you asked for.

BOOL isRealHandle = IsWindow(unknwodnHandle);

Look at this link for more information.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Graham is right .. some time in race it is very tough to rely on IsWindow API

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.