WM PPAINT: Difference between revisions
Appearance
Created page with "This message is posted when the Language Support Window or Dialog Procedure processes a WM_PAINT message. ==Syntax== <pre> param1 ULONG ulReserved; →Reserved value, should be 0.: param2 ULONG ulReserved; →Reserved value, should be 0.: </pre> ==Parameters== ;''ulReserved'' (ULONG) - input: Reserved value, should be 0. ;''ulReserved'' (ULONG) - input: Reserved value, should be 0. ==Returns== ;''ulReserved'' (ULONG) - returns: Reserved value, sho..." |
|||
Line 19: | Line 19: | ||
==Remarks== | ==Remarks== | ||
===Language Support Dialog=== | ===Language Support Dialog=== | ||
The Language Support Dialog Procedure issuing the WinDefDlgProc function, then issues the WinBeginPaint and WinEndPaint functions, and then setting ulReserved to the result of the WinDefDlgProc function. | The Language Support Dialog Procedure issuing the [[WinDefDlgProc]] function, then issues the [[WinBeginPaint]] and [[WinEndPaint]] functions, and then setting ''ulReserved'' to the result of the WinDefDlgProc function. | ||
===Language Support Window=== | ===Language Support Window=== |
Latest revision as of 21:03, 14 April 2025
This message is posted when the Language Support Window or Dialog Procedure processes a WM_PAINT message.
Syntax
param1 ULONG ulReserved; /* Reserved value, should be 0. */ param2 ULONG ulReserved; /* Reserved value, should be 0. */
Parameters
- ulReserved (ULONG) - input
- Reserved value, should be 0.
- ulReserved (ULONG) - input
- Reserved value, should be 0.
Returns
- ulReserved (ULONG) - returns
- Reserved value, should be 0.
Remarks
Language Support Dialog
The Language Support Dialog Procedure issuing the WinDefDlgProc function, then issues the WinBeginPaint and WinEndPaint functions, and then setting ulReserved to the result of the WinDefDlgProc function.
Language Support Window
The Language Support Window Procedure issues the WinBeginPaint and WinEndPaint functions, and then sets ulReserved to 0.
Default Processing
The default window procedure issues the WinBeginPaint and WinEndPaint functions, and then sets ulReserved to 0.
Language Support Dialog
The default window procedure takes no action on this message, other than to set ulReserved to 0.
Language Support Window
The default window procedure takes no action on this message, other than to set ulReserved to 0.
Related Messages
- WM_PPAINT (Language Support Dialog)
- WM_PPAINT (Language Support Window)