Re :How do exw and win32lib behave?
- Posted by David Cuny <dcuny at LANSET.COM> Nov 24, 1998
- 482 views
Hawke' wondered (I'm paraphrasing here): > Are Windows events handled as interrupts (as they happen), or are they queued? They are queued. You can see Win32Lib read they queue in the routine WinMain; the actual event processing is handled in the routine WndProc. Win32 supports multithreading; Win32Lib does not (not currently, anyway). -- David Cuny