summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2010-07-18 23:39:52 -0400
committerRyan Lortie <desrt@desrt.ca>2010-07-18 23:39:52 -0400
commit0444465d738b2632cc23614501202dac7e68abfd (patch)
tree7faa1ce8ba6f99727b485676303581d44b2921f6 /service
parent1086dc13815445f4a965f63105c79990dfec80fe (diff)
downloaddconf-0444465d738b2632cc23614501202dac7e68abfd.tar.gz
header cleanup
Diffstat (limited to 'service')
-rw-r--r--service/dconf-interfaces.c21
-rw-r--r--service/dconf-interfaces.h26
-rw-r--r--service/dconf-rebuilder.h5
-rw-r--r--service/dconf-writer.c21
-rw-r--r--service/dconf-writer.h26
5 files changed, 99 insertions, 0 deletions
diff --git a/service/dconf-interfaces.c b/service/dconf-interfaces.c
index 34989a7..c50232d 100644
--- a/service/dconf-interfaces.c
+++ b/service/dconf-interfaces.c
@@ -1,3 +1,24 @@
+/*
+ * Copyright © 2010 Codethink Limited
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the licence, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Ryan Lortie <desrt@desrt.ca>
+ */
+
#include "dconf-interfaces.h"
static const GDBusArgInfo name_arg = { -1, (gchar *) "name", (gchar *) "s" };
diff --git a/service/dconf-interfaces.h b/service/dconf-interfaces.h
index d8af50d..9f159b1 100644
--- a/service/dconf-interfaces.h
+++ b/service/dconf-interfaces.h
@@ -1,4 +1,30 @@
+/*
+ * Copyright © 2010 Codethink Limited
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the licence, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Ryan Lortie <desrt@desrt.ca>
+ */
+
+#ifndef __dconf_interfaces_h__
+#define __dconf_interfaces_h__
+
#include <gio/gio.h>
extern const GDBusInterfaceInfo ca_desrt_dconf_Writer;
extern const GDBusInterfaceInfo ca_desrt_dconf_WriterInfo;
+
+#endif /* __dconf_interfaces_h__ */
diff --git a/service/dconf-rebuilder.h b/service/dconf-rebuilder.h
index 57f6974..1aa06de 100644
--- a/service/dconf-rebuilder.h
+++ b/service/dconf-rebuilder.h
@@ -19,6 +19,9 @@
* Author: Ryan Lortie <desrt@desrt.ca>
*/
+#ifndef __dconf_rebuilder_h__
+#define __dconf_rebuilder_h__
+
#include <glib.h>
gboolean dconf_rebuilder_rebuild (const gchar *filename,
@@ -27,3 +30,5 @@ gboolean dconf_rebuilder_rebuild (const gchar *filename,
GVariant *const*values,
gint n_items,
GError **error);
+
+#endif /* __dconf_rebuilder_h__ */
diff --git a/service/dconf-writer.c b/service/dconf-writer.c
index b120c73..00dac13 100644
--- a/service/dconf-writer.c
+++ b/service/dconf-writer.c
@@ -1,3 +1,24 @@
+/*
+ * Copyright © 2010 Codethink Limited
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the licence, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Ryan Lortie <desrt@desrt.ca>
+ */
+
#include "dconf-writer.h"
#include "dconf-shmdir.h"
diff --git a/service/dconf-writer.h b/service/dconf-writer.h
index 19b0945..8dc1d9d 100644
--- a/service/dconf-writer.h
+++ b/service/dconf-writer.h
@@ -1,3 +1,27 @@
+/*
+ * Copyright © 2010 Codethink Limited
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the licence, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Ryan Lortie <desrt@desrt.ca>
+ */
+
+#ifndef __dconf_writer_h__
+#define __dconf_writer_h__
+
#include <glib.h>
typedef struct OPAQUE_TYPE__DConfWriter DConfWriter;
@@ -20,3 +44,5 @@ gboolean dconf_writer_set_lock (DConfWr
const gchar *name,
gboolean locked,
GError **error);
+
+#endif /* __dconf_writer_h__ */