From 3e654bf95931043120ce0460ebb85fc5661fc667 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 13 Feb 2015 16:21:31 -0500 Subject: [PATCH] More commentary. --- wintable/accessibility.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wintable/accessibility.h b/wintable/accessibility.h index 6783353..e81067b 100644 --- a/wintable/accessibility.h +++ b/wintable/accessibility.h @@ -248,6 +248,7 @@ HANDLER(accessibilityHandler) // its two siblings only cast lParam, resulting in an erroneous DWORD to LONG comparison // The Old New Thing book does not cast anything // Microsoft's MSAA sample casts lParam to LONG instead! + // (As you can probably tell, the biggest problem with MSAA is that its documentation is ambiguous and/or self-contradictory...) if (((DWORD) lParam) != ((DWORD) OBJID_CLIENT)) return FALSE; *lResult = LresultFromObject(&IID_IAccessible, wParam, (LPUNKNOWN) (t->ta));