25 lines
334 B
C
25 lines
334 B
C
/* SPDX-FileCopyrightText: 2016 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup intern_mantaflow
|
|
*/
|
|
|
|
#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
|