| Code: |
| LRESULT WINAPI EditWndProcA( HWND hwnd,
UINT msg, WPARAM wParam, LPARAM lParam )
{ return wow_handlers.edit_proc( hwnd, msg, wParam, lParam, FALSE ); } |
| Code: |
| LRESULT EditWndProc_common( HWND hwnd,
UINT msg, WPARAM wParam, LPARAM lParam, BOOL unicode )
|
| Code: |
| switch (msg) {
case EM_GETSEL: result = EDIT_EM_GetSel(es, (PUINT)wParam, (PUINT)lParam); break; .... |