brender-1997/pentprim/TIMESTMP.H
2022-05-03 14:31:40 -07:00

39 lines
595 B
C

/*
* Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved.
*
* $Id: TIMESTMP.H 1.1 1996/09/26 19:04:06 JOHNG Exp $
* $Locker: $
*
* Private device driver structure
*/
#ifndef _TIMESTMP_H_
#define _TIMESTMP_H_
#ifdef __cplusplus
extern "C" {
#endif
/*
* Driver-wide timestamp
*/
typedef br_uint_32 br_timestamp;
extern br_timestamp PrimDriverTimestamp;
#define Timestamp() (PrimDriverTimestamp += 2)
/*
* Initial timestamp
*/
#define TIMESTAMP_START 1
/*
* A time that will never happen
*/
#define INVALID_TIME 0
#ifdef __cplusplus
};
#endif
#endif