Difference between revisions of "List ILE Service Program Information (QBNLSPGM)"
From MidrangeWiki
DaveLClarkI (talk | contribs) |
DaveLClarkI (talk | contribs) |
||
Line 5: | Line 5: | ||
The following is an RPG/LE fully free-form prototype for the IBM QBNLSPGM API to list ILE service program information into a user space. | The following is an RPG/LE fully free-form prototype for the IBM QBNLSPGM API to list ILE service program information into a user space. | ||
+ | |||
+ | For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qbnlspgm.htm List Service Program Information (QBNLSPGM)] (right-click to open link in a new tab). | ||
== Prototype for the QBNLSPGM API == | == Prototype for the QBNLSPGM API == |
Revision as of 15:15, 7 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QBNLSPGM API to list ILE service program information into a user space.
For more information on this API, visit List Service Program Information (QBNLSPGM) (right-click to open link in a new tab).
Prototype for the QBNLSPGM API
//****************************************************************************** // IBM API to List ILE Service Program Information into a User Space // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qbnlspgm.htm //****************************************************************************** dcl-pr IBMAPI_ListSrvProgramInfo extpgm('QBNLSPGM'); SrvPgmSpcN char(20) const; SrvPgmIFmt char(8) const; SrvPgmName char(20) const; SrvPgmErrC likeds(ApiErrC) options(*varsize); end-pr;