mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTUSER] Add 'Win:' comments around IntDefWindowProc
This commit is contained in:
parent
0484beb04b
commit
40863aebc4
3 changed files with 11 additions and 4 deletions
|
@ -91,6 +91,7 @@ DefWndHandleWindowPosChanging(PWND pWnd, WINDOWPOS* Pos)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Win: xxxHandleWindowPosChanged */
|
||||
LRESULT FASTCALL
|
||||
DefWndHandleWindowPosChanged(PWND pWnd, WINDOWPOS* Pos)
|
||||
{
|
||||
|
@ -120,6 +121,7 @@ DefWndHandleWindowPosChanged(PWND pWnd, WINDOWPOS* Pos)
|
|||
//
|
||||
// Handle a WM_SYSCOMMAND message. Called from DefWindowProc().
|
||||
//
|
||||
// Win: xxxSysCommand
|
||||
LRESULT FASTCALL
|
||||
DefWndHandleSysCommand(PWND pWnd, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
|
@ -360,6 +362,7 @@ DefWndHandleSetCursor(PWND pWnd, WPARAM wParam, LPARAM lParam)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/* Win: xxxDWPPrint */
|
||||
VOID FASTCALL DefWndPrint( PWND pwnd, HDC hdc, ULONG uFlags)
|
||||
{
|
||||
/*
|
||||
|
@ -430,6 +433,7 @@ UserPaintCaption(PWND pWnd, INT Flags)
|
|||
}
|
||||
|
||||
// WM_SETICON
|
||||
/* Win: xxxDWP_SetIcon */
|
||||
LRESULT FASTCALL
|
||||
DefWndSetIcon(PWND pWnd, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
|
@ -468,6 +472,7 @@ DefWndSetIcon(PWND pWnd, WPARAM wParam, LPARAM lParam)
|
|||
return (LRESULT)hIconOld;
|
||||
}
|
||||
|
||||
/* Win: DWP_GetIcon */
|
||||
LRESULT FASTCALL
|
||||
DefWndGetIcon(PWND pWnd, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
|
@ -527,6 +532,7 @@ DefWndScreenshot(PWND pWnd)
|
|||
/*
|
||||
Win32k counterpart of User DefWindowProc
|
||||
*/
|
||||
/* Win: xxxRealDefWindowProc */
|
||||
LRESULT FASTCALL
|
||||
IntDefWindowProc(
|
||||
PWND Wnd,
|
||||
|
|
|
@ -305,9 +305,9 @@ co_UserProcessHotKeys(WORD wVk, BOOL bIsDown)
|
|||
|
||||
|
||||
/*
|
||||
* DefWndGetHotKey
|
||||
* DefWndGetHotKey --- GetHotKey message support
|
||||
*
|
||||
* GetHotKey message support
|
||||
* Win: DWP_GetHotKey
|
||||
*/
|
||||
UINT FASTCALL
|
||||
DefWndGetHotKey(PWND pWnd)
|
||||
|
@ -332,9 +332,9 @@ DefWndGetHotKey(PWND pWnd)
|
|||
}
|
||||
|
||||
/*
|
||||
* DefWndSetHotKey
|
||||
* DefWndSetHotKey --- SetHotKey message support
|
||||
*
|
||||
* SetHotKey message support
|
||||
* Win: DWP_SetHotKey
|
||||
*/
|
||||
INT FASTCALL
|
||||
DefWndSetHotKey(PWND pWnd, WPARAM wParam)
|
||||
|
|
|
@ -1245,6 +1245,7 @@ NC_DoNCPaint(PWND pWnd, HDC hDC, INT Flags)
|
|||
return 0; // For WM_NCPAINT message, return 0.
|
||||
}
|
||||
|
||||
/* Win: xxxCalcClientRect */
|
||||
LRESULT NC_HandleNCCalcSize( PWND Wnd, WPARAM wparam, RECTL *Rect, BOOL Suspended )
|
||||
{
|
||||
LRESULT Result = 0;
|
||||
|
|
Loading…
Reference in a new issue