Retrieve Program Information (QCLRPGMI)

From MidrangeWiki
Revision as of 20:09, 6 December 2018 by DaveLClarkI (talk | contribs) (DaveLClarkI moved page QCLRPGMI — Retrieve Program Information to Retrieve Program Information (QCLRPGMI): Better Indexing (too many Q's))
Jump to: navigation, search

Summary

The following is an RPG/LE fully free-form prototype for the IBM QCLRPGMI API to retrieve information about a program.

Prototype for the QCLRPGMI API

//******************************************************************************
// IBM API to Retrieve a Program's Information
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qclrpgmi.htm
//******************************************************************************
/include qsysinc/qrpglesrc,qclrpgmi         // QCLRPGMI API data structures
dcl-pr IBMAPI_RtvPgmInfo          extpgm('QCLRPGMI');
  PgmInfo               likeds(QUSD0400)    options(*varsize);
  PgmInfL               int(10)   const;
  PgmIFmt               char(8)   const;
  PgmName               char(20)  const;
  PgmErrC               likeds(ApiErrC)     options(*varsize);
end-pr;

References