aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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__ */
+