GreGetGraphicsField: Difference between revisions
Appearance
Created page with "GreGetGraphicsField loads the buffer indicated by prclGraphicsField with the integer values that identify the boundaries of the graphics field. This function can be hooked b..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
GreGetGraphicsField loads the buffer indicated by prclGraphicsField with the integer values that identify the boundaries of the graphics field. | GreGetGraphicsField loads the buffer indicated by prclGraphicsField with the integer values that identify the boundaries of the graphics field. | ||
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 == | ||
GreGetGraphicsField(hdc, prclGraphicsField, pInstance, lFunction) | GreGetGraphicsField(hdc, prclGraphicsField, pInstance, lFunction) | ||
== Parameters == | == Parameters == | ||
;hdc (HDC) - input | ;hdc (HDC) - input:Device context handle. | ||
:Device context handle. | ;prclGraphicsField ([[PRECTL]]) - input:Pointer to graphics field. | ||
;pInstance (PVOID) - input:Pointer to instance data. | |||
;prclGraphicsField (PRECTL) - input | ;lFunction (ULONG) - input:High-order WORD=flags; low-order WORD=NGreGetGraphicsField. | ||
:Pointer to graphics field. | |||
;pInstance (PVOID) - input | |||
:Pointer to instance data. | |||
;lFunction (ULONG) - input | |||
:High-order WORD=flags; low-order WORD=NGreGetGraphicsField. | |||
== Returns == | == Returns == | ||
;fSuccess (BOOL) - returns | ;fSuccess (BOOL) - returns:Return codes. | ||
:Return 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_HDC_BUSY | ||
:*FALSE Error | :*PMERR_INV_HDC | ||
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation. | |||
:Possible Errors Detected: | |||
:*PMERR_HDC_BUSY | |||
:*PMERR_INV_HDC | |||
:Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation. | |||
[[Category:Gre]] | [[Category:Gre]] |
Revision as of 12:15, 20 January 2020
GreGetGraphicsField loads the buffer indicated by prclGraphicsField with the integer values that identify the boundaries of the graphics field.
This function can be hooked by the presentation driver.
- Simulation support
- This function is simulated by a handling routine in the graphics engine.
Syntax
GreGetGraphicsField(hdc, prclGraphicsField, pInstance, lFunction)
Parameters
- hdc (HDC) - input
- Device context handle.
- prclGraphicsField (PRECTL) - input
- Pointer to graphics field.
- pInstance (PVOID) - input
- Pointer to instance data.
- lFunction (ULONG) - input
- High-order WORD=flags; low-order WORD=NGreGetGraphicsField.
Returns
- fSuccess (BOOL) - returns
- Return 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_HDC_BUSY
- PMERR_INV_HDC
- Refer to the "Error Explanations" section in the Presentation Manager Programming Reference for further explanation.