List ILE Program Information (QBNLPGMI)

From MidrangeWiki
Revision as of 18:53, 6 December 2018 by 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 QBNLPGMI API to list ILE program information into...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Summary

The following is an RPG/LE fully free-form prototype for the IBM QBNLPGMI API to list ILE program information into a user space.

Prototype for the QBNLPGMI API

//******************************************************************************
// IBM API to List ILE Program Information into a User Space
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qbnlpgmi.htm
//******************************************************************************
dcl-pr IBMAPI_ListIleProgramInfo  extpgm('QBNLPGMI');
  IlePgmSpcN            char(20)  const;
  IlePgmIFmt            char(8)   const;
  IlePgmName            char(20)  const;
  IlePgmErrC            likeds(ApiErrC)     options(*varsize);
end-pr;

References