Visible to Intel only — GUID: GUID-A2F93C7E-B0F6-4B48-B1FF-BA0A9BE5E626
Visible to Intel only — GUID: GUID-A2F93C7E-B0F6-4B48-B1FF-BA0A9BE5E626
PXFGET
POSIX Subroutine: Gets the value stored in a component (or field) of a structure.
Module
USE IFPOSIX
CALL PXF(type)GET (jhandle,compname,value,ierror)
CALL PXF(type)GET (jhandle,compname,value,ilen,ierror) ! syntax when (type) is STR
(type) |
A placeholder for one of the following values:
|
||||||||||||||||||||||||
jhandle |
(Input) INTEGER(4). A handle of a structure. |
||||||||||||||||||||||||
compname |
(Input) Character. The name of the component (or field) of the structure to retrieve data from. |
||||||||||||||||||||||||
value |
(Output) A variable, whose data type depends on the value of (type). See the table above for the data types for each value; for example, if the value for (type) is INT, the data type is INTEGER(4). Stores the value of the component (or field). |
||||||||||||||||||||||||
ilen |
(Output) INTEGER(4). This argument can only be used when (type) is STR (PXFSTRGET). Stores the length of the returned string. |
||||||||||||||||||||||||
ierror |
(Output) INTEGER(4). The error status. |
If successful, ierror is set to zero; otherwise, an error code.
The PXF(type)GET subroutines retrieve the value from component (or field) compname of the structure associated with handle jhandle into variable value.
Example
See the example in PXFTIMES (which shows PXFINTGET and PXFINT8GET)