mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
GDBus: Hide class structures for classes we don't want to be subclassed
E.g. move these C structures out of public header files and into their respective C files. Also nuke padding since this is no longer needed. This leaves only GDBusProxy as an extendable type. Signed-off-by: David Zeuthen <davidz@redhat.com>
This commit is contained in:
@@ -100,6 +100,27 @@
|
||||
* </programlisting></example>
|
||||
*/
|
||||
|
||||
/**
|
||||
* GDBusAuthObserverClass:
|
||||
* @authorize_authenticated_peer: Signal class handler for the #GDBusAuthObserver::authorize-authenticated-peer signal.
|
||||
*
|
||||
* Class structure for #GDBusAuthObserverClass.
|
||||
*
|
||||
* Since: 2.26
|
||||
*/
|
||||
struct _GDBusAuthObserverClass
|
||||
{
|
||||
/*< private >*/
|
||||
GObjectClass parent_class;
|
||||
|
||||
/*< public >*/
|
||||
|
||||
/* Signals */
|
||||
gboolean (*authorize_authenticated_peer) (GDBusAuthObserver *observer,
|
||||
GIOStream *stream,
|
||||
GCredentials *credentials);
|
||||
};
|
||||
|
||||
struct _GDBusAuthObserverPrivate
|
||||
{
|
||||
gint foo;
|
||||
|
Reference in New Issue
Block a user