Cleanup: add extern C

This commit is contained in:
Jacques Lucke
2020-03-19 16:54:09 +01:00
parent 89b0465136
commit 689606887f

View File

@@ -24,6 +24,10 @@
#ifndef __OBJECT_INTERN_H__
#define __OBJECT_INTERN_H__
#ifdef __cplusplus
extern "C" {
#endif
struct Object;
struct StructRNA;
struct bContext;
@@ -293,4 +297,8 @@ void OBJECT_OT_quadriflow_remesh(struct wmOperatorType *ot);
void OBJECT_OT_data_transfer(struct wmOperatorType *ot);
void OBJECT_OT_datalayout_transfer(struct wmOperatorType *ot);
#ifdef __cplusplus
}
#endif
#endif /* __OBJECT_INTERN_H__ */