Difference between revisions of "Retrieve Object Description (QUSROBJD)"
From MidrangeWiki
DaveLClarkI (talk | contribs) (Created page with "Category:API Category:RPG_Prototypes == Summary == The following is an RPG/LE fully free-form prototype for the IBM QUSROBJD API to retrieve the description for a spe...") |
DaveLClarkI (talk | contribs) (→Prototype for the QUSROBJD API) |
||
Line 8: | Line 8: | ||
<pre> | <pre> | ||
//****************************************************************************** | //****************************************************************************** | ||
− | // IBM API to Retrieve | + | // IBM API to Retrieve an Object's Description (if authorized to object) |
− | // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/ | + | // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusrobjd.htm |
//****************************************************************************** | //****************************************************************************** | ||
− | /include qsysinc/qrpglesrc, | + | /include qsysinc/qrpglesrc,qusrobjd // QUSROBJD API data structures |
− | dcl-pr | + | dcl-pr IBMAPI_RtvObjDesc extpgm('QUSROBJD'); |
− | + | ObjDesc likeds(QUSD0400) options(*varsize); | |
− | + | ObjDscL int(10) const; | |
− | + | ObjDFmt char(8) const; | |
− | + | ObjName char(20) const; | |
− | + | ObjType char(10) const; | |
− | // optional parm group | + | // optional parm group 1 |
− | + | ObjErrC likeds(ApiErrC) options(*nopass:*varsize); | |
+ | // optional parm group 2 | ||
+ | ObjAspC likeds(QUSRASPC) options(*nopass); | ||
end-pr; | end-pr; | ||
</pre> | </pre> |
Revision as of 21:20, 6 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QUSROBJD API to retrieve the description for a specified object. The calling process must have at least *USE authority for the object.
Prototype for the QUSROBJD API
//****************************************************************************** // IBM API to Retrieve an Object's Description (if authorized to object) // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusrobjd.htm //****************************************************************************** /include qsysinc/qrpglesrc,qusrobjd // QUSROBJD API data structures dcl-pr IBMAPI_RtvObjDesc extpgm('QUSROBJD'); ObjDesc likeds(QUSD0400) options(*varsize); ObjDscL int(10) const; ObjDFmt char(8) const; ObjName char(20) const; ObjType char(10) const; // optional parm group 1 ObjErrC likeds(ApiErrC) options(*nopass:*varsize); // optional parm group 2 ObjAspC likeds(QUSRASPC) options(*nopass); end-pr;