GreDestroyRegion: Difference between revisions
Appearance
Created page with "GreDestroyRegion deletes the specified region unless it has been selected as a clipping region. In this case, an error is raised. When a null region is specified, GreDestroyRe..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
GreDestroyRegion deletes the specified region unless it has been selected as a clipping region. In this case, an error is raised. When a null region is specified, GreDestroyRegion does not delete any region and returns without logging an error. | GreDestroyRegion deletes the specified region unless it has been selected as a clipping region. In this case, an error is raised. When a null region is specified, GreDestroyRegion does not delete any region and returns without logging an error. | ||
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 == | ||
GreDestroyRegion(hdc, hrgn, pInstance, lFunction) | GreDestroyRegion(hdc, hrgn, pInstance, lFunction) | ||
== Parameters == | == Parameters == | ||
;hdc (HDC) - input | ;hdc (HDC) - input:Device context handle. | ||
:Device context handle. | ;hrgn (HRGN) - input:Region handle. | ||
;pInstance (PVOID) - input:Pointer to instance data. | |||
;hrgn (HRGN) - input | ;lFunction (ULONG) - input:High-order WORD=flags; low-order WORD=NGreDestroyRegion. | ||
:Region handle. | |||
;pInstance (PVOID) - input | |||
:Pointer to instance data. | |||
;lFunction (ULONG) - input | |||
:High-order WORD=flags; low-order WORD=NGreDestroyRegion. | |||
== Returns == | == Returns == | ||
;fSuccess (BOOL) - returns | ;fSuccess (BOOL) - returns:Reurn codes. | ||
:Reurn codes. | :This function returns BOOLEAN (fSuccess). | ||
:*TRUE Successful | |||
:This function returns BOOLEAN (fSuccess). | :*FALSE 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: | |||
:*TRUE Successful | :*PMERR_HRGN_BUSY | ||
:*FALSE Error | :*PMERR_INV_HRGN | ||
:*PMERR_REGION_IS_CLIP_REGION | |||
: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_HRGN_BUSY | |||
:*PMERR_INV_HRGN | |||
:*PMERR_REGION_IS_CLIP_REGION | |||
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation. | |||
== Sample == | == Sample == | ||
Line 49: | Line 36: | ||
BOOL fSuccess; /* Reurn codes. */ | BOOL fSuccess; /* Reurn codes. */ | ||
fSuccess = GreDestroyRegion(hdc, hrgn, pInstance, | fSuccess = GreDestroyRegion(hdc, hrgn, pInstance, lFunction); | ||
</pre> | </pre> | ||
[[Category:Gre]] | [[Category:Gre]] |
Latest revision as of 18:36, 5 April 2025
GreDestroyRegion deletes the specified region unless it has been selected as a clipping region. In this case, an error is raised. When a null region is specified, GreDestroyRegion does not delete any region and returns without logging an error.
This function can be hooked by the presentation driver.
- Simulation support
- This function is simulated by a handling routine in the graphics engine.
Syntax
GreDestroyRegion(hdc, hrgn, pInstance, lFunction)
Parameters
- hdc (HDC) - input
- Device context handle.
- hrgn (HRGN) - input
- Region handle.
- pInstance (PVOID) - input
- Pointer to instance data.
- lFunction (ULONG) - input
- High-order WORD=flags; low-order WORD=NGreDestroyRegion.
Returns
- fSuccess (BOOL) - returns
- Reurn codes.
- This function returns BOOLEAN (fSuccess).
- TRUE Successful
- FALSE 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_HRGN_BUSY
- PMERR_INV_HRGN
- PMERR_REGION_IS_CLIP_REGION
- Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.
Sample
#define INCL_GRE_REGIONS #include <os2.h> HDC hdc; /* Device context handle. */ HRGN hrgn; /* Region handle. */ PVOID pInstance; /* Pointer to instance data. */ ULONG lFunction; /* High-order WORD=flags; low-order WORD=NGreDestroyRegion. */ BOOL fSuccess; /* Reurn codes. */ fSuccess = GreDestroyRegion(hdc, hrgn, pInstance, lFunction);