mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-10-11 18:08:08 +00:00
[idd] helper: stop using MsgWaitForMultipleObjects
`MsgWaitForMultipleObjects` doesn't handle inner message loops, which may happen during `TrackPopupMenu`, causing exits to fail.
This commit is contained in:
@@ -10,15 +10,19 @@ class CNotifyWindow : public CWindow
|
||||
|
||||
NOTIFYICONDATA m_iconData;
|
||||
HMENU m_menu;
|
||||
bool closeRequested;
|
||||
|
||||
LRESULT onNotifyIcon(UINT uEvent, WORD wIconId, int x, int y);
|
||||
void registerIcon();
|
||||
|
||||
virtual LRESULT handleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam) override;
|
||||
virtual LRESULT onCreate() override;
|
||||
virtual LRESULT onClose() override;
|
||||
|
||||
public:
|
||||
CNotifyWindow();
|
||||
~CNotifyWindow() override;
|
||||
static bool registerClass();
|
||||
|
||||
void close();
|
||||
};
|
||||
|
Reference in New Issue
Block a user