From cf93b65a65f948d4014d3fd2f7541ffe1b2209d4 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Mon, 2 Mar 2020 15:04:53 +0100 Subject: Cleanup: make remaining blenlib headers work in C++ Differential Revision: https://developer.blender.org/D6988 Reviewers: brecht --- source/blender/blenlib/BLI_bitmap_draw_2d.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/blenlib/BLI_bitmap_draw_2d.h') diff --git a/source/blender/blenlib/BLI_bitmap_draw_2d.h b/source/blender/blenlib/BLI_bitmap_draw_2d.h index bad1605ac5d..f5f8b28b27f 100644 --- a/source/blender/blenlib/BLI_bitmap_draw_2d.h +++ b/source/blender/blenlib/BLI_bitmap_draw_2d.h @@ -21,6 +21,10 @@ * \ingroup bli */ +#ifdef __cplusplus +extern "C" { +#endif + void BLI_bitmap_draw_2d_line_v2v2i(const int p1[2], const int p2[2], bool (*callback)(int, int, void *), @@ -41,4 +45,8 @@ void BLI_bitmap_draw_2d_poly_v2i_n(const int xmin, void (*callback)(int x, int x_end, int y, void *), void *user_data); +#ifdef __cplusplus +} +#endif + #endif /* __BLI_BITMAP_DRAW_2D_H__ */ -- cgit v1.2.3