Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-03-02 17:04:53 +0300
committerJacques Lucke <jacques@blender.org>2020-03-02 17:05:15 +0300
commitcf93b65a65f948d4014d3fd2f7541ffe1b2209d4 (patch)
tree015451f3485396c208bf7054bb3460ba7349b263 /source/blender/blenlib/BLI_bitmap_draw_2d.h
parent5afa4b1dc8aacdd17f72a2bcaccd53838107c229 (diff)
Cleanup: make remaining blenlib headers work in C++
Differential Revision: https://developer.blender.org/D6988 Reviewers: brecht
Diffstat (limited to 'source/blender/blenlib/BLI_bitmap_draw_2d.h')
-rw-r--r--source/blender/blenlib/BLI_bitmap_draw_2d.h8
1 files changed, 8 insertions, 0 deletions
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__ */