diff --git a/pageant.c b/pageant.c index e0def27a..e0f77c30 100644 --- a/pageant.c +++ b/pageant.c @@ -33,6 +33,11 @@ */ #define AGENT_MAX_MSGLEN 8192 +/* From MSDN: In the WM_SYSCOMMAND message, the four low-order bits of + * wParam are used by Windows, and should be masked off, so we shouldn't + * attempt to store information in them. Hence all these identifiers have + * the low 4 bits clear. */ + #define IDM_CLOSE 0x0010 #define IDM_VIEWKEYS 0x0020 #define IDM_ADDKEY 0x0030 diff --git a/window.c b/window.c index cd5dda49..24862331 100644 --- a/window.c +++ b/window.c @@ -22,6 +22,11 @@ #include #include +/* From MSDN: In the WM_SYSCOMMAND message, the four low-order bits of + * wParam are used by Windows, and should be masked off, so we shouldn't + * attempt to store information in them. Hence all these identifiers have + * the low 4 bits clear. */ + #define IDM_SHOWLOG 0x0010 #define IDM_NEWSESS 0x0020 #define IDM_DUPSESS 0x0030