mirror of
https://github.com/brl/mutter.git
synced 2024-12-02 21:00:42 -05:00
e02fef8e2f
Make meson link libmutter using -fvisibility=hidden, and introduce META_EXPORT and META_EXPORT_TEST defines to mark a symbols as visible. The TEST version is meant to be used to flag symbols that are only used internally by mutter tests, but that should not be considered public API. This allows us to be more precise in selecting what is exported and what is not, without the need of a version-script file that would be more complicated to maintain. https://gitlab.gnome.org/GNOME/mutter/merge_requests/395
22 lines
542 B
C
22 lines
542 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef META_BACKGROUND_GROUP_H
|
|
#define META_BACKGROUND_GROUP_H
|
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include <meta/common.h>
|
|
|
|
#define META_TYPE_BACKGROUND_GROUP (meta_background_group_get_type ())
|
|
|
|
META_EXPORT
|
|
G_DECLARE_FINAL_TYPE (MetaBackgroundGroup,
|
|
meta_background_group,
|
|
META, BACKGROUND_GROUP,
|
|
ClutterActor)
|
|
|
|
META_EXPORT
|
|
ClutterActor *meta_background_group_new (void);
|
|
|
|
#endif /* META_BACKGROUND_GROUP_H */
|