D_STSCO

SUMMARY
d_stsco(SET,ts[,dbn])
int SET;
ULONG ts;
int dbn;

ARGUMENTS
SET The set type for whose current member the last access timestamp
is to be set.

ts A ULONG (unsigned long) variable to containing timestamp value.

dbn (Optional) The number of the database containing the record.


DESCRIPTION
Function d_stsco assign the last access timestamp for the current owner
of SET from the usigned long variable ts.

──────────────────────────────────────────────────────────────────────────
Note:
This function should be used with function d_csoset to restore the current
member's database address and last access timestamp, for those record
types whitch are timestamped.
──────────────────────────────────────────────────────────────────────────

CURRENCY CHANGES
None

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

-9 S_NOCO The current owner is null.

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

EXAMPLE


DB_ADDR dba;
ULONG ts ;
..
/* save current (timestamped) author on stac for later processing */
d_csoset(HAS_PUBLISHED,&dba);
d_gtsco (HAS_PUBLISHED,&ts);
..
/* restore saved author os owner of has_published */
d_csoset(HAS_PUBLISHED,&dba);
d_stsco (HAS_PUBLISHED,ts);
..