Difference between revisions of "UIM Remove List Entry (QUIRMVLE)"
From MidrangeWiki
DaveLClarkI (talk | contribs) (Created page with "Category:RPG_Prototypes Category:API == Summary == The following is an RPG/LE fully free-form prototype for the IBM QUIRMVLE API to use the UIM to remove a list panel...") |
DaveLClarkI (talk | contribs) (→Summary) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:API]] | ||
[[Category:RPG_Prototypes]] | [[Category:RPG_Prototypes]] | ||
[[Category:API]] | [[Category:API]] | ||
Line 4: | Line 5: | ||
The following is an RPG/LE fully free-form prototype for the IBM QUIRMVLE API to use the UIM to remove a list panel entry within an open display application. | The following is an RPG/LE fully free-form prototype for the IBM QUIRMVLE API to use the UIM to remove a list panel entry within an open display application. | ||
+ | |||
+ | For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quirmvle.htm Remove List Entry (QUIRMVLE) API] (right-click to open link in a new tab). | ||
+ | |||
+ | By [[User:DaveLClarkI|Dave Clark]] | ||
== Prototype for the QUIRMVLE API == | == Prototype for the QUIRMVLE API == | ||
Line 21: | Line 26: | ||
== References == | == References == | ||
− | * [[ | + | * [[API Error Code Structure (ApiErrC)]] |
Latest revision as of 17:02, 17 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QUIRMVLE API to use the UIM to remove a list panel entry within an open display application.
For more information on this API, visit Remove List Entry (QUIRMVLE) API (right-click to open link in a new tab).
By Dave Clark
Prototype for the QUIRMVLE API
//****************************************************************************** // IBM Remove List Entry API // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quirmvle.htm //****************************************************************************** dcl-pr IBMUIM_RemoveListEntry extpgm('QUIRMVLE'); ReAppHndl char(8) const; ReLstName char(10) const; ReExtOpt char(1) const; ReLeHndl char(4); ReErrCode likeds(ApiErrC) options(*varsize); end-pr;