2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2016 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2019-12-16 15:41:07 +01:00
|
|
|
|
2019-12-17 09:20:32 +11:00
|
|
|
/** \file
|
2021-12-14 18:35:31 +11:00
|
|
|
* \ingroup intern_mantaflow
|
2019-12-16 15:41:07 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MANTA_PYTHON_API_H
|
|
|
|
|
#define MANTA_PYTHON_API_H
|
|
|
|
|
|
2025-01-26 20:08:09 +01:00
|
|
|
#include <Python.h>
|
2019-12-16 15:41:07 +01:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
PyObject *Manta_initPython(void);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|