2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-09-15 01:52:28 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup pythonintern
|
2012-09-15 01:52:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-07-28 16:32:30 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-05-29 14:50:29 +10:00
|
|
|
int BPY_library_load_type_ready(void);
|
|
|
|
|
extern PyMethodDef BPY_library_load_method_def;
|
|
|
|
|
|
|
|
|
|
extern PyMethodDef BPY_library_write_method_def;
|
2012-09-15 01:52:28 +00:00
|
|
|
|
2020-07-28 16:32:30 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|