Displaying 1 result from an estimated 1 matches for "editwndproca".
2010 Jun 20
2
DIBEngine and gdi32/user32 controls drawing loop performance
...Where can I modify such a behaviour? In particular my App.exe program use many gdi32 drawing commands for drawing buttons and text input fields, so the files dlls/user32/button.c and dlls/user32/edit.c are involved. I think that the dlls/user32/winproc.c file, where the
Code:
LRESULT WINAPI EditWndProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
{
return wow_handlers.edit_proc( hwnd, msg, wParam, lParam, FALSE );
}
function is defined is the file where I should do some changes; this function calls
Code:
LRESULT EditWndProc_common( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPara...