Cleanup: make remaining blenlib headers work in C++

Differential Revision: https://developer.blender.org/D6988

Reviewers: brecht
This commit is contained in:
2020-03-02 15:04:53 +01:00
parent 5afa4b1dc8
commit cf93b65a65
41 changed files with 328 additions and 0 deletions

View File

@@ -26,6 +26,10 @@
* \ingroup BLI
*/
#ifdef __cplusplus
extern "C" {
#endif
/* ret < 0: the timer will be removed.
* ret >= 0: the timer will be called again in ret seconds */
typedef double (*BLI_timer_func)(uintptr_t uuid, void *user_data);
@@ -54,4 +58,8 @@ void BLI_timer_free(void);
* is properly configured for the new file. */
void BLI_timer_on_file_load(void);
#ifdef __cplusplus
}
#endif
#endif /* __BLI_TIMER_H__ */