Difference between revisions of "Create User Space (QUSCRTUS)"

From MidrangeWiki
Jump to: navigation, search
(Created page with "Category:API Category:RPG_Prototypes == Summary == The following is an RPG/LE fully free-form prototype for the IBM QUSCRTUS API to create a user space. == Prototype...")
 
m (DaveLClarkI moved page QUSCRTUS — Create User Space to Create User Space (QUSCRTUS): Better Indexing (too many Q's))
(No difference)

Revision as of 20:39, 6 December 2018

Summary

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

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;

References