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

bpy_library.h « intern « python « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b911a0dab5b1cdf6f4ea922fb474409fb4341a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup pythonintern
 */

#pragma once

#ifdef __cplusplus
extern "C" {
#endif

int BPY_library_load_type_ready(void);
extern PyMethodDef BPY_library_load_method_def;

extern PyMethodDef BPY_library_write_method_def;

#ifdef __cplusplus
}
#endif