From 065ae39d61dd6402d061821eef4383b25b816914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Fri, 18 Nov 2022 15:24:07 +0100 Subject: [PATCH] clutter: Add CLUTTER_EXPORT_TEST define Just like in mutter, add a define for exporting functions so that they can be used in tests. This will be useful in the next commit. Part-of: --- clutter/clutter/clutter-macros.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/clutter/clutter/clutter-macros.h b/clutter/clutter/clutter-macros.h index 03e33e784..ace3d5e3f 100644 --- a/clutter/clutter/clutter-macros.h +++ b/clutter/clutter/clutter-macros.h @@ -119,4 +119,9 @@ #define CLUTTER_EXPORT _CLUTTER_EXTERN +/* CLUTTER_EXPORT_TEST should be used to export symbols that are exported only + * for testability purposes + */ +#define CLUTTER_EXPORT_TEST CLUTTER_EXPORT + #endif /* __CLUTTER_MACROS_H__ */