Difference between revisions of "Create User Space (QUSCRTUS)"
From MidrangeWiki
DaveLClarkI (talk | contribs) |
DaveLClarkI (talk | contribs) |
||
Line 3: | Line 3: | ||
[[Category:User_Spaces]] | [[Category:User_Spaces]] | ||
== Summary == | == Summary == | ||
− | |||
The following is an RPG/LE fully free-form prototype for the IBM QUSCRTUS API to create a user space. | The following is an RPG/LE fully free-form prototype for the IBM QUSCRTUS API to create a user space. | ||
Revision as of 16:45, 7 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).
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;