From: Marco Barisione Date: Mon, 6 May 2013 10:37:47 +0000 (+0100) Subject: tpaw-utils: add stub for files with misc utility functions X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=dc5ad68355fa55261f24098d9be184a2c6f6f459 tpaw-utils: add stub for files with misc utility functions https://bugzilla.gnome.org/show_bug.cgi?id=699492 --- diff --git a/tp-account-widgets/Makefile.am b/tp-account-widgets/Makefile.am index 80089458..29a8ed72 100644 --- a/tp-account-widgets/Makefile.am +++ b/tp-account-widgets/Makefile.am @@ -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 index 00000000..d8bebdac --- /dev/null +++ b/tp-account-widgets/tpaw-utils.c @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2013 Collabora Ltd. + * + * Authors: Marco Barisione + * + * 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 index 00000000..8c5dc8cb --- /dev/null +++ b/tp-account-widgets/tpaw-utils.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2013 Collabora Ltd. + * + * Authors: Marco Barisione + * + * 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 + +G_BEGIN_DECLS + +G_END_DECLS + +#endif /* __TPAW_UTILS_H__ */