GreQueryClipRegion: Difference between revisions
Appearance
Created page with "GreQueryClipRegion returns the handle of the currently selected clip region, or NULL (if none exists). This function can be hooked by the presentation driver. ;Simulation ..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
GreQueryClipRegion returns the handle of the currently selected clip region, or NULL (if none exists). | GreQueryClipRegion returns the handle of the currently selected clip region, or NULL (if none exists). | ||
This function can be hooked by the presentation driver. | This function can be hooked by the presentation driver. | ||
;Simulation support: This function is simulated by a handling routine in the graphics engine. | ;Simulation support: This function is simulated by a handling routine in the graphics engine. | ||
==Syntax== | ==Syntax== | ||
GreQueryClipRegion(hdc, pInstance, lFunction) | GreQueryClipRegion(hdc, pInstance, lFunction) | ||
==Parameters== | ==Parameters== | ||
;hdc (HDC) - input | ;hdc (HDC) - input:Device context handle. | ||
:Device context handle. | ;pInstance (PVOID) - input:Pointer to instance data. | ||
;lFunction (ULONG) - input:High-order WORD=flags; low-order WORD=NGreQueryClipRegion. | |||
;pInstance (PVOID) - input | |||
:Pointer to instance data. | |||
;lFunction (ULONG) - input | |||
:High-order WORD=flags; low-order WORD=NGreQueryClipRegion. | |||
==Return Code== | ==Return Code== | ||
;rc (HRGN) - returns | ;rc (HRGN) - returns:This function returns the handle of the clip region: | ||
:This function returns the handle of the clip region: | :*hrgn Region handle | ||
:*NULL Null handle (no region selected) | |||
:*hrgn Region handle | :*HRGN_ERROR Error | ||
:*NULL Null handle (no region selected) | ;Possible Errors Detected:When an error is detected, the handling routine must call WinSetErrorInfo to post the condition. Error codes for conditions that the handling routine is expected to check include: | ||
:*HRGN_ERROR Error | :*PMERR_HDC_BUSY | ||
:*PMERR_INV_HDC | |||
;Possible Errors Detected:When an error is detected, the handling routine must call WinSetErrorInfo to post the condition. Error codes for conditions that the handling routine is expected to check include: | :Refer to the "Error Explanations" section in the ''Presentation Manager Programming Reference'' for further explanation. | ||
:*PMERR_HDC_BUSY | |||
:*PMERR_INV_HDC | |||
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation. | |||
==Sample Code== | ==Sample Code== | ||
<PRE> | <PRE> | ||
#define INCL_GRE_CLIP | #define INCL_GRE_CLIP | ||
#include <os2.h> | #include <os2.h> |
Latest revision as of 23:16, 24 March 2020
GreQueryClipRegion returns the handle of the currently selected clip region, or NULL (if none exists).
This function can be hooked by the presentation driver.
- Simulation support
- This function is simulated by a handling routine in the graphics engine.
Syntax
GreQueryClipRegion(hdc, pInstance, lFunction)
Parameters
- hdc (HDC) - input
- Device context handle.
- pInstance (PVOID) - input
- Pointer to instance data.
- lFunction (ULONG) - input
- High-order WORD=flags; low-order WORD=NGreQueryClipRegion.
Return Code
- rc (HRGN) - returns
- This function returns the handle of the clip region:
- hrgn Region handle
- NULL Null handle (no region selected)
- HRGN_ERROR Error
- Possible Errors Detected
- When an error is detected, the handling routine must call WinSetErrorInfo to post the condition. Error codes for conditions that the handling routine is expected to check include:
- PMERR_HDC_BUSY
- PMERR_INV_HDC
- Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.
Sample Code
#define INCL_GRE_CLIP #include <os2.h> HDC hdc; /* Device context handle. */ PVOID pInstance; /* Pointer to instance data. */ ULONG lFunction; /* High-order WORD=flags; low-order WORD=NGreQueryClipRegion. */ HRGN rc; /* This function returns the handle of the clip region: */ rc = GreQueryClipRegion(hdc, pInstance, lFunction);