Difference between revisions of "Retrieve Service Program Information (QBNRSPGM)"
From MidrangeWiki
DaveLClarkI (talk | contribs) (Created page with "QBNRSPGM — Retrieve Service Program Information Category:API Category:RPG_Prototypes == Summary == The following is an RPG/LE fully free-form prototype for the IBM...") |
DaveLClarkI (talk | contribs) m (DaveLClarkI moved page QBNRSPGM — Retrieve Service Program Information to Retrieve Service Program Information (QBNRSPGM): Better Indexing (too many Q's)) |
(No difference)
|
Revision as of 20:08, 6 December 2018
QBNRSPGM — Retrieve Service Program Information
Summary
The following is an RPG/LE fully free-form prototype for the IBM QBNRSPGM API to retrieve information about a service program.
Prototype for the QBNRSPGM API
//****************************************************************************** // IBM API to Retrieve a Service Program's Information // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qbnrspgm.htm //****************************************************************************** /include qsysinc/qrpglesrc,qbnrspgm // QBNRSPGM API data structures dcl-pr IBMAPI_RtvSrvPgmInfo extpgm('QBNRSPGM'); SrvPgmInfo likeds(QBNI0100) options(*varsize); SrvPgmInfL int(10) const; SrvPgmIFmt char(8) const; SrvPgmName char(20) const; SrvPgmErrC likeds(ApiErrC) options(*varsize); end-pr;