mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:13:01 +00:00
- Hacky wine patch to fix CORE-7054.
svn path=/trunk/; revision=60626
This commit is contained in:
parent
3648f77525
commit
8d3618abf0
1 changed files with 2 additions and 8 deletions
|
@ -22,6 +22,7 @@ LRESULT DefWndNCActivate(HWND hWnd, WPARAM wParam, LPARAM lParam);
|
||||||
LRESULT DefWndNCHitTest(HWND hWnd, POINT Point);
|
LRESULT DefWndNCHitTest(HWND hWnd, POINT Point);
|
||||||
LRESULT DefWndNCLButtonDown(HWND hWnd, WPARAM wParam, LPARAM lParam);
|
LRESULT DefWndNCLButtonDown(HWND hWnd, WPARAM wParam, LPARAM lParam);
|
||||||
LRESULT DefWndNCLButtonDblClk(HWND hWnd, WPARAM wParam, LPARAM lParam);
|
LRESULT DefWndNCLButtonDblClk(HWND hWnd, WPARAM wParam, LPARAM lParam);
|
||||||
|
LRESULT NC_HandleNCRButtonDown( HWND hwnd, WPARAM wParam, LPARAM lParam );
|
||||||
void FASTCALL MenuInitSysMenuPopup(HMENU Menu, DWORD Style, DWORD ClsStyle, LONG HitTest );
|
void FASTCALL MenuInitSysMenuPopup(HMENU Menu, DWORD Style, DWORD ClsStyle, LONG HitTest );
|
||||||
void MENU_EndMenu( HWND );
|
void MENU_EndMenu( HWND );
|
||||||
|
|
||||||
|
@ -1163,14 +1164,7 @@ User32DefWindowProc(HWND hWnd,
|
||||||
}
|
}
|
||||||
|
|
||||||
case WM_NCRBUTTONDOWN:
|
case WM_NCRBUTTONDOWN:
|
||||||
{
|
return NC_HandleNCRButtonDown( hWnd, wParam, lParam );
|
||||||
/* in Windows, capture is taken when right-clicking on the caption bar */
|
|
||||||
if (wParam == HTCAPTION)
|
|
||||||
{
|
|
||||||
SetCapture(hWnd);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
case WM_RBUTTONUP:
|
case WM_RBUTTONUP:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue