jondinham
jondinham

Reputation: 8499

Win API, get window list without using callback

This is a Windows 32 API question: How to get the list of windows without using callback (called by EnumWindows)? Because I need to get the full list of windows before doing other codes which rely on this list of windows.

Upvotes: 0

Views: 196

Answers (1)

jondinham
jondinham

Reputation: 8499

EnumWindows blocks the current thread, so all other codes which rely on the results of EnumWindows work fine.

Upvotes: 1

Related Questions