Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- db_VISTA III - d_gtsco http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
      D_GTSCO

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

ARGUMENTS
   SET       The set type for which the last access timestamp is to
             be returned.

   ts        Pointer to a ULONG (unsigned long) variable to contain
             timestamp value.

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


DESCRIPTION
   Function d_gtsco copies the last access timestamp for the current
   owner of SET into the unsigned long variable pointer to by ts.

--------------------------------------------------------------------------
Note:
   This function should be used with function d_csoget to save the curent
   owner'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.

   -8   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 stack for later processing */
   d_csoget(HAS_PUBLISHED,&dba);
   d_gtsco (HAS_PUBLISHED,&ts);
    ..
   /* restore saved author as owner of has_published */
   d_csoset(HAS_PUBLISHED,&dba);
   d_stsco (HAS_PUBLISHED,&ts);
    ..

See Also: d_csmget d_csmset d_gtsco d_gtscr d_stscm d_stsco

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson