pgpl/tests/clap/timestamp.h

11 lines
313 B
C
Raw Permalink Normal View History

2025-10-03 20:16:11 +02:00
#pragma once
#include "private/std.h"
#include "private/macros.h"
// This type defines a timestamp: the number of seconds since UNIX EPOCH.
// See C's time_t time(time_t *).
typedef uint64_t clap_timestamp;
// Value for unknown timestamp.
static const CLAP_CONSTEXPR clap_timestamp CLAP_TIMESTAMP_UNKNOWN = 0;