Difference between revisions of "Retrieve Pointer to User Space (QUSPTRUS)"

From MidrangeWiki
Jump to: navigation, search
(References)
(Summary)
Line 7: Line 7:
  
 
For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusptrus.htm Retrieve Pointer to User Space (QUSPTRUS) 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/qusptrus.htm Retrieve Pointer to User Space (QUSPTRUS) API] (right-click to open link in a new tab).
 +
 +
By [[User:DaveLClarkI|Dave Clark]]
  
 
== Prototype for the QUSPTRUS API ==
 
== Prototype for the QUSPTRUS API ==

Revision as of 16:57, 17 December 2018

Summary

The following is an RPG/LE fully free-form prototype for the IBM QUSPTRUS API to retrieve a pointer to a user space.

For more information on this API, visit Retrieve Pointer to User Space (QUSPTRUS) API (right-click to open link in a new tab).

By Dave Clark

Prototype for the QUSPTRUS API

//******************************************************************************
// IBM API to Retrieve a Pointer to a User Space
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusptrus.htm
//******************************************************************************
dcl-pr IBMAPI_RtvPtrUsrSpace      extpgm('QUSPTRUS');
  UsrSpcName            char(20)  const;
  UsrSpcPtr             pointer;
// optional parm group
  UsrSpcErrC            likeds(ApiErrC)     options(*nopass:*varsize);
end-pr;

References