]> git.0d.be Git - empathy.git/commitdiff
tpaw-utils: add stub for files with misc utility functions
authorMarco Barisione <marco.barisione@collabora.co.uk>
Mon, 6 May 2013 10:37:47 +0000 (11:37 +0100)
committerMarco Barisione <marco.barisione@collabora.co.uk>
Tue, 20 Aug 2013 10:03:05 +0000 (11:03 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=699492

tp-account-widgets/Makefile.am
tp-account-widgets/tpaw-utils.c [new file with mode: 0644]
tp-account-widgets/tpaw-utils.h [new file with mode: 0644]

index 80089458f5775d61184a4a02cfec28c58054f258..29a8ed72d645954274fa8101b4b12ffce1654a0e 100644 (file)
@@ -29,6 +29,7 @@ libtp_account_widgets_sources =               \
        tpaw-irc-network-manager.c              \
        tpaw-irc-network.c                      \
        tpaw-irc-server.c                       \
+       tpaw-utils.c                            \
        totem-subtitle-encoding.c               \
        $(NULL)
 
diff --git a/tp-account-widgets/tpaw-utils.c b/tp-account-widgets/tpaw-utils.c
new file mode 100644 (file)
index 0000000..d8bebda
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2013 Collabora Ltd.
+ *
+ * Authors: Marco Barisione <marco.barisione@collabora.co.uk>
+ *
+ * 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.1 of the License, 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include "config.h"
+#include "tpaw-utils.h"
+
+#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
+#include "empathy-debug.h"
diff --git a/tp-account-widgets/tpaw-utils.h b/tp-account-widgets/tpaw-utils.h
new file mode 100644 (file)
index 0000000..8c5dc8c
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2013 Collabora Ltd.
+ *
+ * Authors: Marco Barisione <marco.barisione@collabora.co.uk>
+ *
+ * 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.1 of the License, 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifndef __TPAW_UTILS_H__
+#define __TPAW_UTILS_H__
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+G_END_DECLS
+
+#endif /*  __TPAW_UTILS_H__ */