diff options
author | Havoc Pennington <hp@redhat.com> | 2003-07-08 05:07:32 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-07-08 05:07:32 +0000 |
commit | d8abf955f5bff3e83cabd267883039f7a42c98c3 (patch) | |
tree | 8c3f33fcb6fac2593f44bf5cf8cd48f7a46dce1f /dbus/dbus-objectid.h | |
parent | 3f1ad214b5e5c63697ee208d459b304a4ef6e79b (diff) |
2003-07-08 Havoc Pennington <hp@pobox.com>
* dbus/dbus-object.h: sketch out an API for registering objects
with a connection, that allows us to use as little as 24 bytes
per object and lets application code represent an object in
any conceivable way.
* dbus/dbus-object-registry.c: implement the hard bits of the
DBusConnection aspect of object API. Not yet wired up.
Diffstat (limited to 'dbus/dbus-objectid.h')
-rw-r--r-- | dbus/dbus-objectid.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dbus/dbus-objectid.h b/dbus/dbus-objectid.h index 57346910..b5e1f606 100644 --- a/dbus/dbus-objectid.h +++ b/dbus/dbus-objectid.h @@ -30,6 +30,8 @@ #include <dbus/dbus-arch-deps.h> #include <dbus/dbus-types.h> +DBUS_BEGIN_DECLS; + typedef struct DBusObjectID DBusObjectID; struct DBusObjectID @@ -58,4 +60,6 @@ void dbus_object_id_set_as_integer (DBusObjectID *obj_id dbus_uint64_t value); #endif +DBUS_END_DECLS; + #endif /* DBUS_OBJECTID_H */ |