diff options
-rw-r--r-- | doc/Makefile.am | 3 | ||||
-rw-r--r-- | doc/connman-docs.xml | 1 | ||||
-rw-r--r-- | include/element.h | 6 | ||||
-rw-r--r-- | include/property.h | 6 |
4 files changed, 14 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 0c237a30..9b5367a7 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -17,8 +17,7 @@ MKTMPL_OPTIONS = --output-dir=. HFILE_GLOB = $(top_srcdir)/include/*.h CFILE_GLOB = $(top_srcdir)/src/*.c $(top_srcdir)/src/*.h -IGNORE_HFILES = connman connman.h supplicant.h \ - iface.h rtnl.h dbus.h element.h property.h +IGNORE_HFILES = connman connman.h rtnl.h dbus.h iface.h HTML_IMAGES = diff --git a/doc/connman-docs.xml b/doc/connman-docs.xml index d3b69b8f..29bc8533 100644 --- a/doc/connman-docs.xml +++ b/doc/connman-docs.xml @@ -67,6 +67,7 @@ <xi:include href="xml/log.xml" /> <xi:include href="xml/plugin.xml" /> <xi:include href="xml/security.xml" /> + <xi:include href="xml/element.xml" /> <xi:include href="xml/driver.xml" /> </reference> diff --git a/include/element.h b/include/element.h index 9b8beabc..e2d7ea8a 100644 --- a/include/element.h +++ b/include/element.h @@ -31,6 +31,12 @@ extern "C" { #include <connman/property.h> +/** + * SECTION:element + * @title: Element premitives + * @short_description: Functions for handling elements + */ + enum connman_element_state { CONNMAN_ELEMENT_STATE_UNKNOWN = 0, CONNMAN_ELEMENT_STATE_CONNECT = 1, diff --git a/include/property.h b/include/property.h index 20d525a0..d3439486 100644 --- a/include/property.h +++ b/include/property.h @@ -26,6 +26,12 @@ extern "C" { #endif +/** + * SECTION:property + * @title: Property premitives + * @short_description: Functions for handling properties + */ + enum connman_property_type { CONNMAN_PROPERTY_TYPE_INVALID = 0, |