Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_capi_utils.h
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| /** \file | /** \file | ||||
| * \ingroup pythonintern | * \ingroup pythonintern | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #if PY_VERSION_HEX < 0x030a0000 | #if PY_VERSION_HEX < 0x03090000 | ||||
| # error "Python 3.10 or greater is required, you'll need to update your Python." | # error "Python 3.9 or greater is required, you'll need to update your Python." | ||||
| #endif | #endif | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct EnumPropertyItem; | struct EnumPropertyItem; | ||||
| struct ReportList; | struct ReportList; | ||||
| Show All 38 Lines | |||||