Jump to content

GreGetPageUnits: Difference between revisions

From EDM2
Created page with "GreGetPageUnits returns the page units for the specified display context. On completion, the structure addressed by pExtent contains the dimensions of the page expressed in th..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
GreGetPageUnits returns the page units for the specified display context. On completion, the structure addressed by pExtent contains the dimensions of the page expressed in the units indicated by the return value of this function.  
GreGetPageUnits returns the page units for the specified display context. On completion, the structure addressed by pExtent contains the dimensions of the page expressed in the units indicated by the return value of this function.


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 ==
  GreGetPageUnits(hdc, pExtent, pInstance, lFunction);
  GreGetPageUnits(hdc, pExtent, pInstance, lFunction)


== Parameters ==
== Parameters ==
;hdc (HDC) - input  
;hdc (HDC) - input:Device context handle.
:Device context handle.  
;pExtent (PSIZEL) - input:Pointer to a [[SIZEL]] structure where the page dimensions are returned.
 
;pInstance (PVOID) - input:Pointer to instance data.
;pExtent (PSIZEL) - input  
;lFunction (ULONG) - input:High-order WORD=flags; low-order WORD=NGreGetPageUnits.
:Pointer to a SIZEL structure where the page dimensions are returned.  
 
:On completion, the SIZEL structure contains the actual dimensions of the page:
 
::lWidth Page width.
::lHeight Page height.
 
;pInstance (PVOID) - input  
:Pointer to instance data.  
 
;lFunction (ULONG) - input  
:High-order WORD=flags; low-order WORD=NGreGetPageUnits.  


== Returns ==
== Returns ==
;rc (ULONG) - returns  
;rc (ULONG) - returns:Return codes.
:Return codes.  
:This function returns the page units, or GPI_ERROR if an error occurred. The defined page units are described under GreSetPageUnits.
 
: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:
:This function returns the page units, or GPI_ERROR if an error occurred. The defined page units are described under GreSetPageUnits.  
:*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 ==
== Sample ==
Line 45: Line 27:
#include <os2.h>
#include <os2.h>


HDC      hdc;       /* Device context handle. */
HDC      hdc;       /* Device context handle. */
PSIZEL    pExtent;   /* Pointer to a SIZEL structure where the page dimensions are returned. */
PSIZEL    pExtent;   /* Pointer to a SIZEL structure where the page dimensions are returned. */
PVOID    pInstance; /* Pointer to instance data. */
PVOID    pInstance; /* Pointer to instance data. */
ULONG    lFunction; /* High-order WORD=flags; low-order WORD=NGreGetPageUnits. */
ULONG    lFunction; /* High-order WORD=flags; low-order WORD=NGreGetPageUnits. */
ULONG    rc;         /* Return codes. */
ULONG    rc;       /* Return codes. */
 
rc = GreGetPageUnits(hdc, pExtent, pInstance,
      lFunction);


rc = GreGetPageUnits(hdc, pExtent, pInstance, lFunction);
</pre>
</pre>


[[Category:Gre]]
[[Category:Gre]]

Latest revision as of 03:19, 24 January 2020

GreGetPageUnits returns the page units for the specified display context. On completion, the structure addressed by pExtent contains the dimensions of the page expressed in the units indicated by the return value of this function.

This function can be hooked by the presentation driver.

Simulation support
This function is simulated by a handling routine in the graphics engine.

Syntax

GreGetPageUnits(hdc, pExtent, pInstance, lFunction)

Parameters

hdc (HDC) - input
Device context handle.
pExtent (PSIZEL) - input
Pointer to a SIZEL structure where the page dimensions are returned.
pInstance (PVOID) - input
Pointer to instance data.
lFunction (ULONG) - input
High-order WORD=flags; low-order WORD=NGreGetPageUnits.

Returns

rc (ULONG) - returns
Return codes.
This function returns the page units, or GPI_ERROR if an error occurred. The defined page units are described under GreSetPageUnits.
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

#define INCL_GRE_XFORMS
#include <os2.h>

HDC       hdc;       /* Device context handle. */
PSIZEL    pExtent;   /* Pointer to a SIZEL structure where the page dimensions are returned. */
PVOID     pInstance; /* Pointer to instance data. */
ULONG     lFunction; /* High-order WORD=flags; low-order WORD=NGreGetPageUnits. */
ULONG     rc;        /* Return codes. */

rc = GreGetPageUnits(hdc, pExtent, pInstance, lFunction);