comparison src/account.h @ 8175:f347c8d25cf5

[gaim-migrate @ 8889] Make privacy stuff use an enum for different privacy options. This started with a fix to make the box for "allow the users below" show up when opening the privacy dialog when that option was selected. It might be a good idea for a few people to check their privacy settings after using this to make sure it's the same as what it used to be. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 28 Jan 2004 05:43:04 +0000
parents 2b396aefe321
children 63c7a16a2c09
comparison
equal deleted inserted replaced
8174:4c34db6996d1 8175:f347c8d25cf5
31 typedef struct _GaimAccount GaimAccount; 31 typedef struct _GaimAccount GaimAccount;
32 32
33 #include "connection.h" 33 #include "connection.h"
34 #include "proxy.h" 34 #include "proxy.h"
35 #include "prpl.h" 35 #include "prpl.h"
36
37 enum
38 {
39 PERMIT_ALL = 1,
40 PERMIT_NONE,
41 PERMIT_SOME,
42 DENY_SOME
43 };
44 36
45 struct _GaimAccountUiOps 37 struct _GaimAccountUiOps
46 { 38 {
47 void (*notify_added)(GaimAccount *account, const char *remote_user, 39 void (*notify_added)(GaimAccount *account, const char *remote_user,
48 const char *id, const char *alias, 40 const char *id, const char *alias,