Change Library List (QLICHGLL)

From MidrangeWiki
Revision as of 17:46, 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 QLICHGLL API to change the current library, two pr...")
(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 QLICHGLL API to change the current library, two product libraries, and the user part of the library list for the current job.

Prototype for the QLICHGLL API

//******************************************************************************
// IBM Add List Entry API
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quiaddle.htm
//******************************************************************************
dcl-pr IBMUIM_AddListEntry        extpgm('QUIADDLE');
  AeHandle              char(8)   const;
  AeBuffer              char(32767)         options(*varsize);
  AeBufLen              int(10)   const;
  AeRecName             char(10)  const;
  AeLstName             char(10)  const;
  AeOption              char(4)   const;
  AeHandle              char(4);
  AeErrCode             likeds(ApiErrC)     options(*varsize);
end-pr;

References