Difference between revisions of "Open List of Messages (QGYOLMSG)"
From MidrangeWiki
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 QGYOLMSG API to open a list of messages for a user...") |
DaveLClarkI (talk | contribs) m (DaveLClarkI moved page QGYOLMSG — Open List of Messages to Open List of Messages (QGYOLMSG): Better Indexing (too many Q's)) |
(No difference)
|
Revision as of 20:28, 6 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QGYOLMSG API to open a list of messages for a user or from a specified message queue.
Prototype for the QGYOLMSG API
//****************************************************************************** // IBM API to Open a List of Msg Queue Messages // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/QGYOLMSG.htm //****************************************************************************** /include qsysinc/qrpglesrc,qgyolmsg // QGYOLMSG API data structures dcl-pr IBMAPI_ListMsgQueMessages extpgm('QGYOLMSG'); MsgQueRcvr likeds(QGYORV00) options(*varsize); MsgQueRLen int(10) const; MsgQueLstI likeds(QGYOLI00) options(*varsize); MsgQueMCnt int(10) const; MsgQueSort char(1) const; MsgQueMSel likeds(QGYOMSI00) options(*varsize); MsgQueMSLn int(10) const; MsgQueQueI char(21) const; MsgQueQUsed char(44); MsgQueErrC likeds(ApiErrC) options(*varsize); end-pr;