CS_BROWSEDESC structure

ct_br_column uses a CS_BROWSEDESC structure to return information about a column returned as the result of a browse-mode select. This information is useful when an application needs to construct a language command to update browse-mode tables.

A CS_BROWSEDESC structure is defined as follows:

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

where: