summaryrefslogtreecommitdiff
path: root/testsuite/reftests/reftest-snapshot.c
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2019-04-01 12:06:25 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2019-04-01 12:14:45 +0800
commit68af572ba435236d1423f52a06475ea46b977446 (patch)
tree11ff898f4af0478c67255d489398188258f21ab9 /testsuite/reftests/reftest-snapshot.c
parent5b5a68c5dbbcfd414cf3d3fda29a1b675c2d3c1f (diff)
downloadgtk+-68af572ba435236d1423f52a06475ea46b977446.tar.gz
test/reftests: Fix build on Visual Studio
As we are building the gtkreftestprivate and reftest test libraries as DLLs, we need to export the symbols in there so that things will link. Decorate the symbols with G_MODULE_EXPORT for this purpose.
Diffstat (limited to 'testsuite/reftests/reftest-snapshot.c')
-rw-r--r--testsuite/reftests/reftest-snapshot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/reftests/reftest-snapshot.c b/testsuite/reftests/reftest-snapshot.c
index 7fb467b8ae..231ff722e2 100644
--- a/testsuite/reftests/reftest-snapshot.c
+++ b/testsuite/reftests/reftest-snapshot.c
@@ -64,13 +64,13 @@ quit_when_idle (gpointer loop)
static gint inhibit_count;
static GMainLoop *loop;
-void
+G_MODULE_EXPORT void
reftest_inhibit_snapshot (void)
{
inhibit_count++;
}
-void
+G_MODULE_EXPORT void
reftest_uninhibit_snapshot (void)
{
g_assert (inhibit_count > 0);