diff options
author | Murray Cumming <murrayc@murrayc.com> | 2005-06-19 15:31:25 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2005-06-19 15:31:25 +0000 |
commit | 6a4596752c074fbfd10eec0462d6a3f7ac62dfc8 (patch) | |
tree | 2225344e91b3889f1eb4ff30ad1b441a0669ee7e /glib | |
parent | 6e3a318982eaafb7903844671cb602920480220f (diff) |
2005-06-18 Murray Cumming <murrayc@murrayc.com>
* dbus/dbus-glib.h:
* glib/dbus-gobject.c:
* glib/dbus-gproxy.c:
* glib/dbus-gvalue.c: Predeclare structs as
typedef struct _Something Something instead of
typedef struct Something Something, so we can
redeclare the prototypes. Other GNOME libraries
do this already.
Diffstat (limited to 'glib')
-rw-r--r-- | glib/dbus-gobject.c | 2 | ||||
-rw-r--r-- | glib/dbus-gproxy.c | 8 | ||||
-rw-r--r-- | glib/dbus-gvalue.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/glib/dbus-gobject.c b/glib/dbus-gobject.c index 40d1da03..370862f3 100644 --- a/glib/dbus-gobject.c +++ b/glib/dbus-gobject.c @@ -757,7 +757,7 @@ gerror_to_dbus_error_message (const DBusGObjectInfo *object_info, * The context of an asynchronous method call. See dbus_g_method_return() and * dbus_g_method_return_error(). */ -struct DBusGMethodInvocation { +struct _DBusGMethodInvocation { DBusGConnection *connection; /**< The connection */ DBusGMessage *message; /**< The message which generated the method call */ const DBusGObjectInfo *object; /**< The object the method was called on */ diff --git a/glib/dbus-gproxy.c b/glib/dbus-gproxy.c index 8c683af4..143b9a2b 100644 --- a/glib/dbus-gproxy.c +++ b/glib/dbus-gproxy.c @@ -42,12 +42,12 @@ * DBusGProxyManager typedef */ -typedef struct DBusGProxyManager DBusGProxyManager; +typedef struct _DBusGProxyManager DBusGProxyManager; /** * Internals of DBusGProxy */ -struct DBusGProxy +struct _DBusGProxy { GObject parent; /**< Parent instance */ @@ -62,7 +62,7 @@ struct DBusGProxy /** * Class struct for DBusGProxy */ -struct DBusGProxyClass +struct _DBusGProxyClass { GObjectClass parent_class; /**< Parent class */ }; @@ -95,7 +95,7 @@ typedef struct * those signals are emitted on. In order to do this it also has to * track the owners of the names proxies are bound to. */ -struct DBusGProxyManager +struct _DBusGProxyManager { GStaticMutex lock; /**< Thread lock */ int refcount; /**< Reference count */ diff --git a/glib/dbus-gvalue.c b/glib/dbus-gvalue.c index ee2cfda1..72ad737f 100644 --- a/glib/dbus-gvalue.c +++ b/glib/dbus-gvalue.c @@ -38,7 +38,7 @@ static gboolean demarshal_static_variant (DBusGValueMarshalCtx *context, static gpointer dbus_g_value_copy (gpointer value); -struct DBusGValue +struct _DBusGValue { enum { DBUS_G_VALUE_TYPE_TOPLEVEL, |