Difference between revisions of "Get List Entries (QGYGTLE)"

From MidrangeWiki
Jump to: navigation, search
m (DaveLClarkI moved page QGYGTLE — Get List Entries to Get List Entries (QGYGTLE): Better Indexing (too many Q's))
Line 4: Line 4:
  
 
The following is an RPG/LE fully free-form prototype for the IBM QGYGTLE API to get entries from an open list.
 
The following is an RPG/LE fully free-form prototype for the IBM QGYGTLE API to get entries from an open list.
 +
 +
For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qgygtle.htm Get List Entries (QGYGTLE) API] (right-click to open link in a new tab).
  
 
== Prototype for the QGYGTLE API ==
 
== Prototype for the QGYGTLE API ==

Revision as of 15:55, 7 December 2018

Summary

The following is an RPG/LE fully free-form prototype for the IBM QGYGTLE API to get entries from an open list.

For more information on this API, visit Get List Entries (QGYGTLE) API (right-click to open link in a new tab).

Prototype for the QGYGTLE API

//******************************************************************************
// IBM API to get entries from an open list
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qgygtle.htm
//******************************************************************************
dcl-pr IBMAPI_GetListEntries      extpgm('QGYGTLE');
  LstRcvVar             char(65535)         options(*varsize);
  LstRcvVarLen          int(10)   const;
  LstHandle             char(4)   const;
  LstInfo               char(80);
  LstNbrRcdRtn          int(10)   const;
  LstRtnRcdNbr          int(10)   const;
  LstErrCode            likeds(ApiErrC)     options(*varsize);
end-pr;

References