CS_BROWSEDESC structure

srv_tabname and srv_tabcolname use a CS_BROWSEDESC structure to return information about the underlying structure of a browse mode query.

A CS_BROWSEDESC structure is defined as follows:

/*
 ** CS_BROWSEDESC
 ** The Open Server browse column description
 ** structure.
 */
 typedef struct _cs_browsedesc
 {
     CS_INT       status;
     CS_BOOL      isbrowse;
     CS_CHAR      origname[CS_MAX_NAME];
     CS_INT       orignlen;
     CS_INT       tablenum;
     CS_CHAR      tablename[CS_OBJ_NAME];
     CS_INT       tabnlen;
 } CS_BROWSEDESC;

where: