A few headers like BLI_math_constants.h and BLI_utildefines.h keep working for C code, for remaining makesdna and userdef defaults code in C. Pull Request: https://projects.blender.org/blender/blender/pulls/134406
26 lines
661 B
C
26 lines
661 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
|
|
|
|
/**
|
|
* 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);
|