Difference between revisions of "Open List of Messages (QGYOLMSG)"
From MidrangeWiki
DaveLClarkI (talk | contribs) |
DaveLClarkI (talk | contribs) (→Summary) |
||
(One intermediate revision by the same user not shown) | |||
Line 6: | Line 6: | ||
For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/QGYOLMSG.htm Open List of Messages (QGYOLMSG) API] (right-click to open link in a new tab). | For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/QGYOLMSG.htm Open List of Messages (QGYOLMSG) API] (right-click to open link in a new tab). | ||
+ | |||
+ | By [[User:DaveLClarkI|Dave Clark]] | ||
== Prototype for the QGYOLMSG API == | == Prototype for the QGYOLMSG API == | ||
Line 29: | Line 31: | ||
== References == | == References == | ||
− | * [[ | + | * [[API Error Code Structure (ApiErrC)]] |
− | * [[ | + | * [[Get List Entries (QGYGTLE)]] |
− | * [[ | + | * [[Close List (QGYCLST)]] |
Latest revision as of 16:53, 17 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.
For more information on this API, visit Open List of Messages (QGYOLMSG) API (right-click to open link in a new tab).
By Dave Clark
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;