Displaying 1 result from an estimated 1 matches for "edit_em_getsel".
2010 Jun 20
2
DIBEngine and gdi32/user32 controls drawing loop performance
...aram, LPARAM lParam, BOOL unicode )
that is implemented in the dlls/user32/edit.c file, but the fact is that in the EditWndProc_common function there are many cases like this one that manages the various edit messages and window messages sent
Code:
switch (msg) {
case EM_GETSEL:
result = EDIT_EM_GetSel(es, (PUINT)wParam, (PUINT)lParam);
break;
....
and I don't know how to modify the fact that the main loop of the window should handle more messages in order to draw all of the controls at a time and that it should not yield for waiting and then starting drawing again after some tim...