Files
test2/source/blender/blenlib/BLI_time.h
Campbell Barton 7e66026fa0 Cleanup: odd doc-string formatting, match argument names in headers
Quiet argument name mis-match warning.
Assert that WM_event_timer_add takes a timer event type.
2024-02-15 21:31:08 +11:00

34 lines
730 B
C

/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bli
* \brief Platform independent time functions.
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* Return an indication of time, expressed as seconds since some fixed point.
* Successive calls are guaranteed to generate values greater than or equal to the last call.
*/
extern double BLI_time_now_seconds(void);
/** `int` version of #BLI_time_now_seconds. */
extern long int BLI_time_now_seconds_i(void);
/**
* Platform-independent sleep function.
* \param ms: Number of milliseconds to sleep
*/
void BLI_time_sleep_ms(int ms);
#ifdef __cplusplus
}
#endif