Mon, 22 Aug 2016 03:38:13 -0400
Add facebook to meson build.
| 8849 | 1 | /* |
| 2 | ||
| 15884 | 3 | silcpurple.h |
| 8849 | 4 | |
| 5 | Author: Pekka Riikonen <priikone@silcnet.org> | |
| 6 | ||
|
17675
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
7 | Copyright (C) 2004 - 2007 Pekka Riikonen |
| 8849 | 8 | |
| 9 | This program is free software; you can redistribute it and/or modify | |
| 10 | it under the terms of the GNU General Public License as published by | |
| 11 | the Free Software Foundation; version 2 of the License. | |
| 12 | ||
| 13 | This program is distributed in the hope that it will be useful, | |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | GNU General Public License for more details. | |
| 17 | ||
| 18 | */ | |
| 19 | ||
| 15884 | 20 | #ifndef SILCPURPLE_H |
| 21 | #define SILCPURPLE_H | |
| 8849 | 22 | |
|
37418
28302ab00d1a
Include gmodule.h in each protocol's eponymous header because they all
Michael McConville <mmcco@mykolab.com>
parents:
37148
diff
changeset
|
23 | #include <gmodule.h> |
|
28302ab00d1a
Include gmodule.h in each protocol's eponymous header because they all
Michael McConville <mmcco@mykolab.com>
parents:
37148
diff
changeset
|
24 | |
| 15884 | 25 | /* Purple includes */ |
| 8849 | 26 | #include "internal.h" |
| 27 | #include "account.h" | |
| 28 | #include "accountopt.h" | |
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10050
diff
changeset
|
29 | #include "cmds.h" |
|
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10050
diff
changeset
|
30 | #include "conversation.h" |
| 8849 | 31 | #include "debug.h" |
|
34910
60502558e400
Replacements for the GObject Xfer API
Ankit Vani <a@nevitus.org>
parents:
33811
diff
changeset
|
32 | #include "xfer.h" |
| 8849 | 33 | #include "notify.h" |
|
36543
a8c3fecee2d3
Renamed prpl.[ch] to protocol.[ch]
Ankit Vani <a@nevitus.org>
parents:
33811
diff
changeset
|
34 | #include "protocol.h" |
| 8849 | 35 | #include "request.h" |
|
10246
aa5bff72f94c
[gaim-migrate @ 11386]
Mark Doliner <markdoliner@pidgin.im>
parents:
10050
diff
changeset
|
36 | #include "roomlist.h" |
| 8849 | 37 | #include "server.h" |
| 38 | #include "util.h" | |
| 39 | ||
|
20289
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
17680
diff
changeset
|
40 | #undef SILC_VERSION |
|
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
17680
diff
changeset
|
41 | #define SILC_VERSION(a, b, c) (((a) << 24) + ((b) << 16) + ((c) << 8)) |
|
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
17680
diff
changeset
|
42 | |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
43 | #define SILCPURPLE_TYPE_PROTOCOL (silcpurple_protocol_get_type()) |
|
36660
ddb40f691d20
Renamed certain protocol type names to better suit the naming convention used by the protocol
Ankit Vani <a@nevitus.org>
parents:
36638
diff
changeset
|
44 | #define SILCPURPLE_PROTOCOL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SILCPURPLE_TYPE_PROTOCOL, SilcProtocol)) |
|
ddb40f691d20
Renamed certain protocol type names to better suit the naming convention used by the protocol
Ankit Vani <a@nevitus.org>
parents:
36638
diff
changeset
|
45 | #define SILCPURPLE_PROTOCOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SILCPURPLE_TYPE_PROTOCOL, SilcProtocolClass)) |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
46 | #define SILCPURPLE_IS_PROTOCOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SILCPURPLE_TYPE_PROTOCOL)) |
|
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
47 | #define SILCPURPLE_IS_PROTOCOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SILCPURPLE_TYPE_PROTOCOL)) |
|
36660
ddb40f691d20
Renamed certain protocol type names to better suit the naming convention used by the protocol
Ankit Vani <a@nevitus.org>
parents:
36638
diff
changeset
|
48 | #define SILCPURPLE_PROTOCOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), SILCPURPLE_TYPE_PROTOCOL, SilcProtocolClass)) |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
49 | |
| 8849 | 50 | /* Default public and private key file names */ |
| 15884 | 51 | #define SILCPURPLE_PUBLIC_KEY_NAME "public_key.pub" |
| 52 | #define SILCPURPLE_PRIVATE_KEY_NAME "private_key.prv" | |
| 8849 | 53 | |
| 54 | /* Default settings for creating key pair */ | |
| 15884 | 55 | #define SILCPURPLE_DEF_PKCS "rsa" |
| 56 | #define SILCPURPLE_DEF_PKCS_LEN 2048 | |
| 8849 | 57 | |
| 15884 | 58 | #define SILCPURPLE_PRVGRP 0x001fffff |
| 8849 | 59 | |
|
10050
78e480f768f2
[gaim-migrate @ 11011]
Dave West <kat@users.sourceforge.net>
parents:
9917
diff
changeset
|
60 | /* Status IDs */ |
| 15884 | 61 | #define SILCPURPLE_STATUS_ID_OFFLINE "offline" |
| 62 | #define SILCPURPLE_STATUS_ID_AVAILABLE "available" | |
| 63 | #define SILCPURPLE_STATUS_ID_HYPER "hyper" | |
| 64 | #define SILCPURPLE_STATUS_ID_AWAY "away" | |
| 65 | #define SILCPURPLE_STATUS_ID_BUSY "busy" | |
| 66 | #define SILCPURPLE_STATUS_ID_INDISPOSED "indisposed" | |
| 67 | #define SILCPURPLE_STATUS_ID_PAGE "page" | |
|
10050
78e480f768f2
[gaim-migrate @ 11011]
Dave West <kat@users.sourceforge.net>
parents:
9917
diff
changeset
|
68 | |
|
36660
ddb40f691d20
Renamed certain protocol type names to better suit the naming convention used by the protocol
Ankit Vani <a@nevitus.org>
parents:
36638
diff
changeset
|
69 | typedef struct _SilcProtocol |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
70 | { |
|
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
71 | PurpleProtocol parent; |
|
36660
ddb40f691d20
Renamed certain protocol type names to better suit the naming convention used by the protocol
Ankit Vani <a@nevitus.org>
parents:
36638
diff
changeset
|
72 | } SilcProtocol; |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
73 | |
|
36660
ddb40f691d20
Renamed certain protocol type names to better suit the naming convention used by the protocol
Ankit Vani <a@nevitus.org>
parents:
36638
diff
changeset
|
74 | typedef struct _SilcProtocolClass |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
75 | { |
|
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
76 | PurpleProtocolClass parent_class; |
|
36660
ddb40f691d20
Renamed certain protocol type names to better suit the naming convention used by the protocol
Ankit Vani <a@nevitus.org>
parents:
36638
diff
changeset
|
77 | } SilcProtocolClass; |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
78 | |
| 8849 | 79 | typedef struct { |
| 80 | unsigned long id; | |
| 81 | const char *channel; | |
| 82 | unsigned long chid; | |
| 83 | const char *parentch; | |
| 84 | SilcChannelPrivateKey key; | |
| 15884 | 85 | } *SilcPurplePrvgrp; |
| 8849 | 86 | |
| 15884 | 87 | /* The SILC Purple plugin context */ |
| 88 | typedef struct SilcPurpleStruct { | |
| 8849 | 89 | SilcClient client; |
| 90 | SilcClientConnection conn; | |
|
17675
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
91 | SilcPublicKey public_key; |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
92 | SilcPrivateKey private_key; |
|
20289
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
17680
diff
changeset
|
93 | SilcHash sha1hash; |
| 8849 | 94 | |
|
20289
5c844288fbec
applied changes from 32f31e981f0618a4167aa98bcc22c2dab13d1550
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
17680
diff
changeset
|
95 | SilcDList tasks; |
| 8849 | 96 | guint scheduler; |
| 15884 | 97 | PurpleConnection *gc; |
| 98 | PurpleAccount *account; | |
| 8849 | 99 | unsigned long channel_ids; |
| 100 | GList *grps; | |
| 101 | ||
| 102 | char *motd; | |
| 15884 | 103 | PurpleRoomlist *roomlist; |
|
12217
ea610d8ab584
[gaim-migrate @ 14519]
Pekka Riikonen <priikone@silcnet.org>
parents:
12216
diff
changeset
|
104 | SilcMimeAssembler mimeass; |
| 8849 | 105 | unsigned int detaching : 1; |
| 106 | unsigned int resuming : 1; | |
|
30708
535bec1e66fb
Standardize on "cancelled".
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
20289
diff
changeset
|
107 | unsigned int roomlist_cancelled : 1; |
| 8849 | 108 | unsigned int chpk : 1; |
| 15884 | 109 | } *SilcPurple; |
| 8849 | 110 | |
| 111 | ||
|
36775
5e59f252d777
Added G_MODULE_EXPORT declaration to protocol get_type() functions
Ankit Vani <a@nevitus.org>
parents:
36688
diff
changeset
|
112 | G_MODULE_EXPORT GType silcpurple_protocol_get_type(void); |
|
36595
d013a99e6d94
Refactored silc to use the new protocol API
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
113 | |
|
17675
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
114 | void silc_say(SilcClient client, SilcClientConnection conn, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
115 | SilcClientMessageType type, char *msg, ...); |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
116 | SilcBool silcpurple_command_reply(SilcClient client, SilcClientConnection conn, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
117 | SilcCommand command, SilcStatus status, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
118 | SilcStatus error, void *context, va_list ap); |
| 15884 | 119 | gboolean silcpurple_check_silc_dir(PurpleConnection *gc); |
| 120 | const char *silcpurple_silcdir(void); | |
| 121 | const char *silcpurple_session_file(const char *account); | |
| 122 | void silcpurple_verify_public_key(SilcClient client, SilcClientConnection conn, | |
|
17675
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
123 | const char *name, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
124 | SilcConnectionType conn_type, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
125 | SilcPublicKey public_key, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
126 | SilcVerifyPublicKey completion, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
127 | void *context); |
| 15884 | 128 | GList *silcpurple_buddy_menu(PurpleBuddy *buddy); |
|
32320
75839f9d761c
silc: Fix build and update for API changes
Paul Aurich <darkrain42@pidgin.im>
parents:
30708
diff
changeset
|
129 | void silcpurple_add_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group, const char *message); |
| 15884 | 130 | void silcpurple_send_buddylist(PurpleConnection *gc); |
| 131 | void silcpurple_remove_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group); | |
| 132 | void silcpurple_buddy_keyagr_request(SilcClient client, | |
|
17675
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
133 | SilcClientConnection conn, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
134 | SilcClientEntry client_entry, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
135 | const char *hostname, SilcUInt16 port, |
|
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
136 | SilcUInt16 protocol); |
| 15884 | 137 | void silcpurple_idle_set(PurpleConnection *gc, int idle); |
| 138 | void silcpurple_tooltip_text(PurpleBuddy *b, PurpleNotifyUserInfo *user_info, gboolean full); | |
| 139 | char *silcpurple_status_text(PurpleBuddy *b); | |
| 140 | gboolean silcpurple_ip_is_private(const char *ip); | |
| 141 | void silcpurple_ftp_send_file(PurpleConnection *gc, const char *name, const char *file); | |
| 142 | PurpleXfer *silcpurple_ftp_new_xfer(PurpleConnection *gc, const char *name); | |
| 143 | void silcpurple_ftp_request(SilcClient client, SilcClientConnection conn, | |
| 8849 | 144 | SilcClientEntry client_entry, SilcUInt32 session_id, |
| 145 | const char *hostname, SilcUInt16 port); | |
| 15884 | 146 | void silcpurple_show_public_key(SilcPurple sg, |
| 8849 | 147 | const char *name, SilcPublicKey public_key, |
| 148 | GCallback callback, void *context); | |
| 15884 | 149 | void silcpurple_get_info(PurpleConnection *gc, const char *who); |
| 8849 | 150 | SilcAttributePayload |
| 15884 | 151 | silcpurple_get_attr(SilcDList attrs, SilcAttribute attribute); |
| 152 | void silcpurple_get_umode_string(SilcUInt32 mode, char *buf, | |
| 8849 | 153 | SilcUInt32 buf_size); |
| 15884 | 154 | void silcpurple_get_chmode_string(SilcUInt32 mode, char *buf, |
| 8849 | 155 | SilcUInt32 buf_size); |
| 15884 | 156 | void silcpurple_get_chumode_string(SilcUInt32 mode, char *buf, |
| 8849 | 157 | SilcUInt32 buf_size); |
| 15884 | 158 | GList *silcpurple_chat_info(PurpleConnection *gc); |
| 159 | GHashTable *silcpurple_chat_info_defaults(PurpleConnection *gc, const char *chat_name); | |
| 160 | GList *silcpurple_chat_menu(PurpleChat *); | |
| 161 | void silcpurple_chat_join(PurpleConnection *gc, GHashTable *data); | |
| 162 | char *silcpurple_get_chat_name(GHashTable *data); | |
| 163 | void silcpurple_chat_invite(PurpleConnection *gc, int id, const char *msg, | |
| 8849 | 164 | const char *name); |
| 15884 | 165 | void silcpurple_chat_leave(PurpleConnection *gc, int id); |
|
36077
b7328f4317c7
Switch purple_serv_chat_send to PurpleMessage
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35833
diff
changeset
|
166 | int silcpurple_chat_send(PurpleConnection *gc, int id, PurpleMessage *msg); |
| 15884 | 167 | void silcpurple_chat_set_topic(PurpleConnection *gc, int id, const char *topic); |
| 168 | PurpleRoomlist *silcpurple_roomlist_get_list(PurpleConnection *gc); | |
| 169 | void silcpurple_roomlist_cancel(PurpleRoomlist *list); | |
| 170 | void silcpurple_chat_chauth_show(SilcPurple sg, SilcChannelEntry channel, | |
|
17675
e7069bf1de1a
Patch from Pekka Riikonen to update the SILC protocol plugin to work with
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
16549
diff
changeset
|
171 | SilcDList channel_pubkeys); |
| 15884 | 172 | void silcpurple_parse_attrs(SilcDList attrs, char **moodstr, char **statusstr, |
|
9488
9d6520fa53fd
[gaim-migrate @ 10313]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9466
diff
changeset
|
173 | char **contactstr, char **langstr, char **devicestr, |
|
9d6520fa53fd
[gaim-migrate @ 10313]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9466
diff
changeset
|
174 | char **tzstr, char **geostr); |
|
35833
a7bfc2479cbd
imgstore: unref silc; fix inline images in silc
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
35812
diff
changeset
|
175 | void silcpurple_buddy_set_icon(PurpleConnection *gc, PurpleImage *img); |
|
33798
ab26d8e3da97
silc: Use appropriate datatype for SilcMessageFlags
Daniel Atallah <datallah@pidgin.im>
parents:
30708
diff
changeset
|
176 | SilcDList silcpurple_image_message(const char *msg, SilcMessageFlags *mflags); |
| 8849 | 177 | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
178 | #ifdef _WIN32 |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
179 | typedef int uid_t; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
180 | |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
181 | struct passwd { |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
182 | char *pw_name; /* user name */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
183 | char *pw_passwd; /* user password */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
184 | int pw_uid; /* user id */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
185 | int pw_gid; /* group id */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
186 | char *pw_gecos; /* real name */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
187 | char *pw_dir; /* home directory */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
188 | char *pw_shell; /* shell program */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
189 | }; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
190 | |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
191 | struct passwd *getpwuid(int uid); |
|
12323
f52908fb23b0
[gaim-migrate @ 14627]
Richard Laager <rlaager@pidgin.im>
parents:
12217
diff
changeset
|
192 | int getuid(void); |
|
f52908fb23b0
[gaim-migrate @ 14627]
Richard Laager <rlaager@pidgin.im>
parents:
12217
diff
changeset
|
193 | int geteuid(void); |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
194 | #endif |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9288
diff
changeset
|
195 | |
| 15884 | 196 | #endif /* SILCPURPLE_H */ |