summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-hash.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2002-11-23 07:48:28 +0000
committerHavoc Pennington <hp@redhat.com>2002-11-23 07:48:28 +0000
commitf09921965c769ff6411ae2f684f6b855d4c8f38d (patch)
treeaefebf4c04e4da7d35e52b4a05b258cbbe31cf48 /dbus/dbus-hash.c
parent954c4c7550879bd80315811b8548adfcb415766e (diff)
2002-11-23 Havoc Pennington <hp@pobox.com>
* Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/ DBUS_END_DECLS to nothing, that should fix this once and for all * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES * dbus/dbus-message.c, dbus/dbus-hash.c: add some missing @brief
Diffstat (limited to 'dbus/dbus-hash.c')
-rw-r--r--dbus/dbus-hash.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/dbus/dbus-hash.c b/dbus/dbus-hash.c
index 419a7848..77fa95dc 100644
--- a/dbus/dbus-hash.c
+++ b/dbus/dbus-hash.c
@@ -1,5 +1,5 @@
/* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-hash.c Generic hash table utility (internal to D-BUS implementation)
+/* dbus-hash.c Generic hash table utility (internal to D-BUS implementation)
*
* Copyright (C) 2002 Red Hat, Inc.
* Copyright (c) 1991-1993 The Regents of the University of California.
@@ -123,6 +123,8 @@
typedef struct DBusHashEntry DBusHashEntry;
/**
+ * @brief Internal representation of a hash entry.
+ *
* A single entry (key-value pair) in the hash table.
* Internal to hash table implementation.
*/
@@ -145,8 +147,10 @@ typedef DBusHashEntry* (* DBusFindEntryFunction) (DBusHashTable *table,
DBusHashEntry ***bucket);
/**
- * Hash table internal members. Hash tables are opaque objects,
- * they must be used via accessor functions.
+ * @brief Internals of DBusHashTable.
+ *
+ * Hash table internals. Hash tables are opaque objects, they must be
+ * used via accessor functions.
*/
struct DBusHashTable {
int refcount; /**< Reference count */
@@ -184,8 +188,8 @@ struct DBusHashTable {
DBusFreeFunction free_value_function; /**< Function to free values */
};
-/**
- * Internals of DBusHashIter.
+/**
+ * @brief Internals of DBusHashIter.
*/
typedef struct
{