From f1e975ba53b6bc180a0a55ef7db64c9371c15f44 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 28 Jun 2011 14:26:39 -0500 Subject: Adding in some helpers with building up all the status-items. --- src/Makefile.am | 2 ++ src/status-items.c | 10 ++++++++++ src/status-items.h | 14 ++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 src/status-items.c create mode 100644 src/status-items.h 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 + +G_BEGIN_DECLS + +GList * status_items_build (void); + +G_END_DECLS + +#endif /* __STATUS_ITEMS_H__ */ + -- cgit v1.2.3