Difference between revisions of "Retrieve Printer File Attributes (QDFRPRTA)"
From MidrangeWiki
DaveLClarkI (talk | contribs) (Created page with "Category:API Category:RPG_Prototypes == Summary == The following is an RPG/LE fully free-form prototype for the IBM QDFRPRTA API to retrieve attributes for a printer...") |
DaveLClarkI (talk | contribs) |
||
Line 4: | Line 4: | ||
The following is an RPG/LE fully free-form prototype for the IBM QDFRPRTA API to retrieve attributes for a printer file definition. | The following is an RPG/LE fully free-form prototype for the IBM QDFRPRTA API to retrieve attributes for a printer file definition. | ||
+ | |||
+ | For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qdfrprta.htm Retrieve Printer File Attributes (QDFRPRTA) API] (right-click to open link in a new tab). | ||
== Prototype for the QDFRPRTA API == | == Prototype for the QDFRPRTA API == |
Revision as of 15:53, 7 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QDFRPRTA API to retrieve attributes for a printer file definition.
For more information on this API, visit Retrieve Printer File Attributes (QDFRPRTA) API (right-click to open link in a new tab).
Prototype for the QDFRPRTA API
//****************************************************************************** // IBM API to Retrieve Printer File Attributes // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qdfrprta.htm //****************************************************************************** /include qsysinc/qrpglesrc,qdfrprta // QDFRPRTA API data Structures dcl-pr IBMAPI_RtvPrtFileAttr extpgm('QDFRPRTA'); PrtFileAttr likeds(QDFF0100) options(*varsize); PrtFileALen int(10) const; PrtFileAFmt char(8) const; PrtFileName char(20) const; PrtFileErrC likeds(ApiErrC) options(*varsize); end-pr;