Laid the foundation for accessibility in the Windows Table.

This commit is contained in:
Pietro Gagliardi 2014-11-09 02:36:43 -05:00
parent f6879c1e26
commit 855025b207
1 changed files with 16 additions and 1 deletions

View File

@ -659,7 +659,22 @@ if (ImageList_GetIconSize(t->imagelist, &unused, &(t->imagelistHeight)) == 0)abo
redrawAll(t);
return FALSE;
}
// otherwise fall through
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
case WM_GETOBJECT: // accessibility
/*
if (((DWORD) lParam) == OBJID_CLIENT) {
TODO *server;
LRESULT lResult;
// TODO create the server object
lResult = LresultFromObject(IID_IAccessible, wParam, server);
if (/* TODO failure */)
abort();
// TODO release object
return lResult;
}
*/
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
default:
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
}