Mercurial > pidgin
annotate plugins/ipc-test-client.c @ 11233:f08d22130bb2
[gaim-migrate @ 13373]
This should fix the "Invalid text buffer iterator" errors.
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Thu, 11 Aug 2005 14:20:23 +0000 |
parents | 50224ac8184d |
children | bb0d7b719af2 |
rev | line source |
---|---|
6822 | 1 /* |
2 * IPC test client plugin. | |
3 * | |
4 * Copyright (C) 2003 Christian Hammond. | |
5 * | |
6 * This program is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU General Public License as | |
8 * published by the Free Software Foundation; either version 2 of the | |
9 * License, or (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, but | |
12 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
19 * 02111-1307, USA. | |
20 */ | |
21 #include "internal.h" | |
22 #include "debug.h" | |
23 #include "plugin.h" | |
9954 | 24 #include "version.h" |
6822 | 25 |
26 #define IPC_TEST_CLIENT_PLUGIN_ID "core-ipc-test-client" | |
27 | |
28 static gboolean | |
29 plugin_load(GaimPlugin *plugin) | |
30 { | |
31 GaimPlugin *server_plugin; | |
32 gboolean ok; | |
33 int result; | |
34 | |
11033
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
35 gaim_debug_register_category("ipc-test-client"); |
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
36 |
6822 | 37 server_plugin = gaim_plugins_find_with_id("core-ipc-test-server"); |
38 | |
39 if (server_plugin == NULL) | |
40 { | |
41 gaim_debug_error("ipc-test-client", | |
42 "Unable to locate plugin core-ipc-test-server, " | |
43 "needed for IPC.\n"); | |
44 | |
45 return TRUE; | |
46 } | |
47 | |
48 result = (int)gaim_plugin_ipc_call(server_plugin, "add", &ok, 36, 6); | |
49 | |
50 if (!ok) | |
51 { | |
52 gaim_debug_error("ipc-test-client", | |
53 "Unable to call IPC function 'add' in " | |
54 "core-ipc-test-server plugin."); | |
55 | |
56 return TRUE; | |
57 } | |
58 | |
59 gaim_debug_info("ipc-test-client", "36 + 6 = %d\n", result); | |
60 | |
61 result = (int)gaim_plugin_ipc_call(server_plugin, "sub", &ok, 50, 8); | |
62 | |
63 if (!ok) | |
64 { | |
65 gaim_debug_error("ipc-test-client", | |
66 "Unable to call IPC function 'sub' in " | |
67 "core-ipc-test-server plugin."); | |
68 | |
69 return TRUE; | |
70 } | |
71 | |
72 gaim_debug_info("ipc-test-client", "50 - 8 = %d\n", result); | |
73 | |
74 return TRUE; | |
75 } | |
76 | |
11033
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
77 static gboolean |
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
78 plugin_unload(GaimPlugin *plugin) |
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
79 { |
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
80 gaim_debug_unregister_category("ipc-test-client"); |
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
81 } |
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
82 |
6822 | 83 static GaimPluginInfo info = |
84 { | |
9954 | 85 GAIM_PLUGIN_MAGIC, |
86 GAIM_MAJOR_VERSION, | |
87 GAIM_MINOR_VERSION, | |
6822 | 88 GAIM_PLUGIN_STANDARD, /**< type */ |
89 NULL, /**< ui_requirement */ | |
90 0, /**< flags */ | |
91 NULL, /**< dependencies */ | |
92 GAIM_PRIORITY_DEFAULT, /**< priority */ | |
93 | |
94 IPC_TEST_CLIENT_PLUGIN_ID, /**< id */ | |
95 N_("IPC Test Client"), /**< name */ | |
96 VERSION, /**< version */ | |
97 /** summary */ | |
98 N_("Test plugin IPC support, as a client."), | |
99 /** description */ | |
100 N_("Test plugin IPC support, as a client. This locates the server " | |
101 "plugin and calls the commands registered."), | |
102 "Christian Hammond <chipx86@gnupdate.org>", /**< author */ | |
103 GAIM_WEBSITE, /**< homepage */ | |
104 | |
105 plugin_load, /**< load */ | |
11033
50224ac8184d
[gaim-migrate @ 12919]
Etan Reisner <pidgin@unreliablesource.net>
parents:
9954
diff
changeset
|
106 plugin_unload, /**< unload */ |
6822 | 107 NULL, /**< destroy */ |
108 | |
109 NULL, /**< ui_info */ | |
8993 | 110 NULL, /**< extra_info */ |
111 NULL, | |
112 NULL | |
6822 | 113 }; |
114 | |
115 static void | |
116 init_plugin(GaimPlugin *plugin) | |
117 { | |
118 info.dependencies = g_list_append(info.dependencies, | |
119 "core-ipc-test-server"); | |
120 } | |
121 | |
122 GAIM_INIT_PLUGIN(ipctestclient, init_plugin, info) |