2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright 2016 Blender Foundation. All rights reserved. */
|
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
|
|
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
PyObject *Manta_initPython(void);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|