mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +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 DefWndNCLButtonDown(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 MENU_EndMenu( HWND );
|
||||
|
||||
|
@ -1163,14 +1164,7 @@ User32DefWindowProc(HWND hWnd,
|
|||
}
|
||||
|
||||
case WM_NCRBUTTONDOWN:
|
||||
{
|
||||
/* in Windows, capture is taken when right-clicking on the caption bar */
|
||||
if (wParam == HTCAPTION)
|
||||
{
|
||||
SetCapture(hWnd);
|
||||
}
|
||||
break;
|
||||
}
|
||||
return NC_HandleNCRButtonDown( hWnd, wParam, lParam );
|
||||
|
||||
case WM_RBUTTONUP:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue