Difference between revisions of "UIM Get Dialog Variable (QUIGETV)"
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 QUIGETV API to use the UIM to get a dialog variable...") |
DaveLClarkI (talk | contribs) (→Prototype for the QUIOPNDA API) |
||
Line 4: | Line 4: | ||
The following is an RPG/LE fully free-form prototype for the IBM QUIGETV API to use the UIM to get a dialog variable from an open a display application. | The following is an RPG/LE fully free-form prototype for the IBM QUIGETV API to use the UIM to get a dialog variable from an open a display application. | ||
− | == Prototype for the | + | == Prototype for the QUIGETV API == |
<pre> | <pre> | ||
//****************************************************************************** | //****************************************************************************** |
Revision as of 18:06, 4 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QUIGETV API to use the UIM to get a dialog variable from an open a display application.
Prototype for the QUIGETV API
//****************************************************************************** // IBM Get Dialog Variable API // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quigetv.htm //****************************************************************************** dcl-pr IBMUIM_GetVariable extpgm('QUIGETV'); GvHandle char(8) const; GvBuffer char(32767) options(*varsize); GvBufLen int(10) const; GvRecName char(10) const; GvErrCode likeds(ApiErrC) options(*varsize); end-pr;