Difference between revisions of "Create User Space (QUSCRTUS)"
From MidrangeWiki
DaveLClarkI (talk | contribs) (→References) |
DaveLClarkI (talk | contribs) (→Summary) |
||
Line 6: | Line 6: | ||
For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quscrtus.htm Create User Space (QUSCRTUS) 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/quscrtus.htm Create User Space (QUSCRTUS) API] (right-click to open link in a new tab). | ||
+ | |||
+ | By [[User:DaveLClarkI|Dave Clark]] | ||
== Prototype for the QUSCRTUS API == | == Prototype for the QUSCRTUS API == |
Revision as of 16:48, 17 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QUSCRTUS API to create a user space.
For more information on this API, visit Create User Space (QUSCRTUS) API (right-click to open link in a new tab).
By Dave Clark
Prototype for the QUSCRTUS API
//****************************************************************************** // IBM API to Create a User Space // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quscrtus.htm //****************************************************************************** dcl-pr IBMAPI_CreateUserSpace extpgm('QUSCRTUS'); UsrSpcName char(20) const; UsrSpcExtA char(10) const; UsrSpcSize int(10) const; UsrSpcInit char(1) const; UsrSpcPubA char(10) const; UsrSpcDesc char(50) const; // optional parm group 1 UsrSpcRepl char(10) const options(*nopass); UsrSpcErrC likeds(ApiErrC) options(*nopass: *varsize); // optional parm group 2 UsrSpcDomn char(10) const options(*nopass); // optional parm group 3 UsrSpcReqS int(10) const options(*nopass); UsrSpcOptA char(1) const options(*nopass); end-pr;