diff options
author | Havoc Pennington <hp@redhat.com> | 2006-11-02 04:26:23 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2006-11-02 04:26:23 +0000 |
commit | 524ddfcb34c2050f008a4797357c5c2abc48ca55 (patch) | |
tree | c3cd11b27b83c6e19cba82bc8b03b90e634d5606 /dbus | |
parent | 5640f7a57b6c8b2e1847e99db412db3c41c9eb98 (diff) |
2006-11-01 Havoc Pennington <hp@redhat.com>
* bus/dbus-daemon.1.in: document standard_session_servicedirs
Diffstat (limited to 'dbus')
-rw-r--r-- | dbus/dbus-sysdeps.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/dbus/dbus-sysdeps.h b/dbus/dbus-sysdeps.h index e7b3eac0..2218cfc1 100644 --- a/dbus/dbus-sysdeps.h +++ b/dbus/dbus-sysdeps.h @@ -41,6 +41,14 @@ DBUS_BEGIN_DECLS +/* Forward declarations */ + +/** An opaque string type */ +typedef struct DBusString DBusString; + +/** An opaque list type */ +typedef struct DBusList DBusList; + /** * @addtogroup DBusSysdeps * @@ -56,12 +64,6 @@ DBUS_BEGIN_DECLS * dbus-memory.c) */ -/** An opaque string type */ -typedef struct DBusString DBusString; - -/** avoid circular includes with DBusList */ -typedef struct DBusList DBusList; - #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4) #define _DBUS_GNUC_PRINTF( format_idx, arg_idx ) \ __attribute__((__format__ (__printf__, format_idx, arg_idx))) |