Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manta_python_API.h « extern « mantaflow « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c79bb6bf55e945f574a23f58ad72fd558144898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2016 Blender Foundation. All rights reserved. */

/** \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