comparison src/account.h @ 8289:e39ea2b4f6cd

[gaim-migrate @ 9013] - Moved GaimCheckAccountFunc into account.h, and renamed it to GaimFilterAccountFunc. - Added filter functions to the account field in the gaim_request_fields API. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 19 Feb 2004 07:25:31 +0000
parents 63c7a16a2c09
children 7dcd6f26e4a7
comparison
equal deleted inserted replaced
8288:dde73afb3283 8289:e39ea2b4f6cd
25 * @see @ref account-signals 25 * @see @ref account-signals
26 */ 26 */
27 #ifndef _GAIM_ACCOUNTS_H_ 27 #ifndef _GAIM_ACCOUNTS_H_
28 #define _GAIM_ACCOUNTS_H_ 28 #define _GAIM_ACCOUNTS_H_
29 29
30 #include <glib.h>
31
30 typedef struct _GaimAccountUiOps GaimAccountUiOps; 32 typedef struct _GaimAccountUiOps GaimAccountUiOps;
31 typedef struct _GaimAccount GaimAccount; 33 typedef struct _GaimAccount GaimAccount;
34
35 typedef gboolean (*GaimFilterAccountFunc)(GaimAccount *account);
32 36
33 #include "connection.h" 37 #include "connection.h"
34 #include "proxy.h" 38 #include "proxy.h"
35 #include "prpl.h" 39 #include "prpl.h"
36 40