soc.2009.telepathy: eb3f4738: Added some missing files

sttwister at soc.pidgin.im sttwister at soc.pidgin.im
Tue Jul 21 11:10:40 EDT 2009


-----------------------------------------------------------------
Revision: eb3f473838a40dfa20035a102fbf80774a10347c
Ancestor: ea2cdb659b94078c0caf6e40873fcf6560836f78
Author: sttwister at soc.pidgin.im
Date: 2009-07-21T15:08:26
Branch: im.pidgin.soc.2009.telepathy
URL: http://d.pidgin.im/viewmtn/revision/info/eb3f473838a40dfa20035a102fbf80774a10347c

Added files:
        libpurple/protocols/telepathy/telepathy.h
        libpurple/protocols/telepathy/telepathy_client.c
        libpurple/protocols/telepathy/telepathy_client.h
Modified files:
        libpurple/protocols/telepathy/Makefile.am
        libpurple/protocols/telepathy/Makefile.mingw

ChangeLog: 

Added some missing files

-------------- next part --------------
============================================================
--- libpurple/protocols/telepathy/telepathy.h	481051030c5780fa417cfc9d41a8cdf533285e3d
+++ libpurple/protocols/telepathy/telepathy.h	481051030c5780fa417cfc9d41a8cdf533285e3d
@@ -0,0 +1,42 @@
+/**
+ * purple - Telepathy Protocol Plugin
+ *
+ * Copyright (C) 2009, Felix Kerekes <sttwister at soc.pidgin.im>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
+ */
+
+#ifndef _TELEPATHY_H_
+#define _TELEPATHY_H_
+
+#include <telepathy-glib/account-manager.h>
+#include <telepathy-glib/connection-manager.h>
+
+#define TELEPATHY_ID "prpl-telepathy"
+#define TELEPATHY_DISPLAY_VERSION "1.0"
+
+void *module_handle;
+gchar *module_path;
+TpAccountManager *account_Manager;
+
+typedef struct
+{
+	TpConnectionManager *cm;
+	TpConnectionManagerProtocol *protocol;
+	PurplePlugin *plugin;
+
+} telepathy_data;
+
+#endif /* _TELEPATHY_H_ */
============================================================
--- libpurple/protocols/telepathy/telepathy_client.c	b871fe403128323a54b34faa8c8f075679610a32
+++ libpurple/protocols/telepathy/telepathy_client.c	b871fe403128323a54b34faa8c8f075679610a32
@@ -0,0 +1,21 @@
+/**
+ * purple - Telepathy Protocol Plugin
+ *
+ * Copyright (C) 2009, Felix Kerekes <sttwister at soc.pidgin.im>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
+ */
+
+#include "telepathy_client.h"
============================================================
--- libpurple/protocols/telepathy/telepathy_client.h	f1c435ad954c9d16c6130012c1b9a7b8732ede52
+++ libpurple/protocols/telepathy/telepathy_client.h	f1c435ad954c9d16c6130012c1b9a7b8732ede52
@@ -0,0 +1,26 @@
+/**
+ * purple - Telepathy Protocol Plugin
+ *
+ * Copyright (C) 2009, Felix Kerekes <sttwister at soc.pidgin.im>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
+ */
+
+#ifndef _TELEPATHY_CLIENT_H_
+#define _TELEPATHY_CLIENT_H_
+
+
+
+#endif /* _TELEPATHY_CLIENT_H_ */
============================================================
--- libpurple/protocols/telepathy/Makefile.am	fd45c471ee56ab2c18488c9d2147adc4873edca6
+++ libpurple/protocols/telepathy/Makefile.am	28e50e34dd0a550ec37ec7d92f112dbaa7432c2f
@@ -10,6 +10,7 @@ TELEPATHYSOURCES = \
 	telepathy_channel.c \
 	telepathy_channel_list.c \
 	telepathy_channel_text.c \
+	telepathy_client.c \
 	telepathy_connection.c \
 	telepathy_contact.c \
 	telepathy_utils.c
============================================================
--- libpurple/protocols/telepathy/Makefile.mingw	98589fb7482feec7331e350452a4903b8a88e9e8
+++ libpurple/protocols/telepathy/Makefile.mingw	01672bcce4cb08b14cdddd8305cb1661394cbfdf
@@ -43,6 +43,7 @@ C_SRC =			telepathy.c \
 			telepathy_channel.c \
 			telepathy_channel_list.c \
 			telepathy_channel_text.c \
+			telepathy_client.c \
 			telepathy_connection.c \
 			telepathy_contact.c \
 			telepathy_utils.c


More information about the Commits mailing list