Blender V4.3
BLI_time.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
10#pragma once
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
20extern double BLI_time_now_seconds(void);
21
23extern long int BLI_time_now_seconds_i(void);
24
29void BLI_time_sleep_ms(int ms);
30
31#ifdef __cplusplus
32}
33#endif
void BLI_time_sleep_ms(int ms)
Definition time.c:85
double BLI_time_now_seconds(void)
Definition time.c:65
long int BLI_time_now_seconds_i(void)
Definition time.c:75