comparison src/prpl.h @ 3789:fb519383a058

[gaim-migrate @ 3929] IRC passwd patch from Chip. Fixed a compile warning in conversation.c. Nathan, tell me if this breaks anything ;-) committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Tue, 22 Oct 2002 23:31:49 +0000
parents ade87dac671f
children 43e396e94095
comparison
equal deleted inserted replaced
3788:56e555b72873 3789:fb519383a058
59 /* These should all be stuff that some plugins can do and others can't */ 59 /* These should all be stuff that some plugins can do and others can't */
60 /* TOC/Oscar send HTML-encoded messages; most other protocols don't */ 60 /* TOC/Oscar send HTML-encoded messages; most other protocols don't */
61 /* #define OPT_PROTO_HTML 0x00000001 this should be per-connection */ 61 /* #define OPT_PROTO_HTML 0x00000001 this should be per-connection */
62 /* TOC/Oscar have signon time, and the server's time needs to be adjusted to match 62 /* TOC/Oscar have signon time, and the server's time needs to be adjusted to match
63 * your computer's time. We wouldn't need this if everyone used NTP. */ 63 * your computer's time. We wouldn't need this if everyone used NTP. */
64 #define OPT_PROTO_CORRECT_TIME 0x00000002 64 #define OPT_PROTO_CORRECT_TIME 0x00000002
65 /* Jabber lets you choose what name you want for chat. So it shouldn't be pulling 65 /* Jabber lets you choose what name you want for chat. So it shouldn't be pulling
66 * the alias for when you're in chat; it gets annoying. */ 66 * the alias for when you're in chat; it gets annoying. */
67 #define OPT_PROTO_UNIQUE_CHATNAME 0x00000004 67 #define OPT_PROTO_UNIQUE_CHATNAME 0x00000004
68 /* IRC, Jabber let you have chat room topics */ 68 /* IRC, Jabber let you have chat room topics */
69 #define OPT_PROTO_CHAT_TOPIC 0x00000008 69 #define OPT_PROTO_CHAT_TOPIC 0x00000008
70 /* IRC and Zephyr don't require passwords, so there's no need for a password prompt */ 70 /* Zephyr doesn't require passwords, so there's no need for a password prompt */
71 #define OPT_PROTO_NO_PASSWORD 0x00000010 71 #define OPT_PROTO_NO_PASSWORD 0x00000010
72 /* MSN and Yahoo notify you when you have new mail */ 72 /* MSN and Yahoo notify you when you have new mail */
73 #define OPT_PROTO_MAIL_CHECK 0x00000020 73 #define OPT_PROTO_MAIL_CHECK 0x00000020
74 /* Oscar and Jabber have buddy icons */ 74 /* Oscar and Jabber have buddy icons */
75 #define OPT_PROTO_BUDDY_ICON 0x00000040 75 #define OPT_PROTO_BUDDY_ICON 0x00000040
76 /* Oscar lets you send images in direct IMs */ 76 /* Oscar lets you send images in direct IMs */
77 #define OPT_PROTO_IM_IMAGE 0x00000080 77 #define OPT_PROTO_IM_IMAGE 0x00000080
78 /* Passwords in IRC are optional, and are needed for certain functionality. */
79 #define OPT_PROTO_PASSWORD_OPTIONAL 0x00000100
78 80
79 #define GAIM_AWAY_CUSTOM "Custom" 81 #define GAIM_AWAY_CUSTOM "Custom"
80 82
81 typedef void (*proto_init)(struct prpl *); 83 typedef void (*proto_init)(struct prpl *);
82 84