From b274d18aec525621bcb0a2234fc65e09398616c2 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 28 Jul 2020 16:32:30 +0200 Subject: Cleanup: correct usage of extern-C blocks in various places This removes extern-C blocks around other includes and adds such blocks for some headers that need them. --- source/blender/python/intern/bpy_app_ffmpeg.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/python/intern/bpy_app_ffmpeg.h') diff --git a/source/blender/python/intern/bpy_app_ffmpeg.h b/source/blender/python/intern/bpy_app_ffmpeg.h index 63fff2b1b4b..4809288662b 100644 --- a/source/blender/python/intern/bpy_app_ffmpeg.h +++ b/source/blender/python/intern/bpy_app_ffmpeg.h @@ -21,6 +21,14 @@ #ifndef __BPY_APP_FFMPEG_H__ #define __BPY_APP_FFMPEG_H__ +#ifdef __cplusplus +extern "C" { +#endif + PyObject *BPY_app_ffmpeg_struct(void); +#ifdef __cplusplus +} +#endif + #endif /* __BPY_APP_FFMPEG_H__ */ -- cgit v1.2.3