Cleanup: make remaining blenkernel headers work in C++

This commit is contained in:
2020-03-02 15:07:49 +01:00
parent cf93b65a65
commit 5de56f9596
81 changed files with 662 additions and 12 deletions

View File

@@ -23,6 +23,10 @@
* \ingroup bke
*/
#ifdef __cplusplus
extern "C" {
#endif
struct BezTriple;
struct Curve;
struct Depsgraph;
@@ -292,4 +296,8 @@ void BKE_curve_decimate_nurb(struct Nurb *nu,
extern void (*BKE_curve_batch_cache_dirty_tag_cb)(struct Curve *cu, int mode);
extern void (*BKE_curve_batch_cache_free_cb)(struct Curve *cu);
#ifdef __cplusplus
}
#endif
#endif /* __BKE_CURVE_H__ */