sds_entgetx

struct sds_resbuf *sds_entgetx (const sds_name entity, const struct sds_resbuf *applist);


Get information and EED about this object.


This function is very similar to sds_entget, except that the result buffer list returned by sds_entgetx includes the EED (an acronym for extended entity data, also referred to as xdata) for the application specified in applist.

The argument entity represents the name of the object whose information you wish to retrieve. The argument applist represents a linked list of application names, whose extended entity data you want included in the result buffer returned by this function.

This function returns the result buffer list with the object's information and extended entity data, or null if the object is not found.

Example

sds_name entname1;

struct sds_resbuf *applist;

struct sds_resbuf *entlist;

applist=sds_buildlist(RTSTR,"myapp",RTNONE);

entlist=sds_entgetx(entname1,applist);

Tell me about...

Programming Overview of SDS™ (Solutions Development System™)

sds_entget