Difference between revisions of "Delete User Space (QUSDLTUS)"

From MidrangeWiki
Jump to: navigation, search
(References)
Line 21: Line 21:
  
 
== References ==
 
== References ==
* [[ApiErrC — API Error Code]]
+
* [[API Error Code Structure (ApiErrC)]]

Revision as of 22:43, 13 December 2018

Summary

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

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

Prototype for the QUSDLTUS API

//******************************************************************************
// IBM API to Delete a User Space
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusdltus.htm
//******************************************************************************
dcl-pr IBMAPI_DeleteUserSpace     extpgm('QUSDLTUS');
  UsrSpcName            char(20)  const;
  UsrSpcErrC            likeds(ApiErrC)     options(*varsize);
end-pr;

References