D_CMSTAT

SUMMARY
d_cmstat(SET [,dbn])
int SET;
int dbn;

ARGUMENTS
SET Set whose current member's status is checked.
dbn (optional)The number of the database containing the record

DESCRIPTION
This function test the timestamp status of the current member of SET since
it was last accessed by the program.The current mumber record type must have
been specified as timestamped in the DDL schema file for the database. The
timestamp status is returned as defined below.

CURRENCY CHANGES
None

RETURN CODES
-2 S_INVSET Invalid set type.Probably passed a record type
instead of a SET type.

-41 S_TIMESTAMP The current member record type is not timestamped.

0 S_OKAY The current member has not been changed by another user
since it was last accessed.

6 S_DELETED The current member has been deleted since it was last
accessed.

7 S_UPDATED The current member was modified since last accessed.




EXAMPLE
if (d_cmstat(HAS_PUBLISHED)==S_OKAY){
d_csmread(HAS_PUBLISHED,INFO_TITLE,title);
....
}