aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-06-28 14:26:39 -0500
committerTed Gould <ted@gould.cx>2011-06-28 14:26:39 -0500
commitf1e975ba53b6bc180a0a55ef7db64c9371c15f44 (patch)
tree6e059ae13c0a4c2e888afdb8214b8b7c2ac397c5
parentcc60029939b6e4128cd6f05b6b7d6657b1a319db (diff)
downloadayatana-indicator-messages-f1e975ba53b6bc180a0a55ef7db64c9371c15f44.tar.gz
ayatana-indicator-messages-f1e975ba53b6bc180a0a55ef7db64c9371c15f44.tar.bz2
ayatana-indicator-messages-f1e975ba53b6bc180a0a55ef7db64c9371c15f44.zip
Adding in some helpers with building up all the status-items.
-rw-r--r--src/Makefile.am2
-rw-r--r--src/status-items.c10
-rw-r--r--src/status-items.h14
3 files changed, 26 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 8e4f170..4f654da 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -54,6 +54,8 @@ indicator_messages_service_SOURCES = \
dirs.h \
dbus-data.h \
\
+ status-items.c \
+ status-items.h
status-provider.c \
status-provider.h
diff --git a/src/status-items.c b/src/status-items.c
new file mode 100644
index 0000000..7cd9c21
--- /dev/null
+++ b/src/status-items.c
@@ -0,0 +1,10 @@
+
+#include "status-items.h"
+
+GList *
+status_items_build (void)
+{
+
+
+ return NULL;
+}
diff --git a/src/status-items.h b/src/status-items.h
new file mode 100644
index 0000000..66844f4
--- /dev/null
+++ b/src/status-items.h
@@ -0,0 +1,14 @@
+
+#ifndef __STATUS_ITEMS_H__
+#define __STATUS_ITEMS_H__
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+GList * status_items_build (void);
+
+G_END_DECLS
+
+#endif /* __STATUS_ITEMS_H__ */
+