comparison src/gtkaccount.h @ 9609:93211b7538d6

[gaim-migrate @ 10452] " To write this cleanly I had to add a handle, init, and uninit functions to gtkaccount.c Also, made doc/gtkaccount-signals.dox as well as update plugins/ChangeLog.API Added plugins/gtk-signals-test.c since we're starting to get some more ui signals, and it's a great place to test new signals." --Gary Kramlich committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 28 Jul 2004 00:49:22 +0000
parents fa6395637e2c
children db62420a53a2
comparison
equal deleted inserted replaced
9608:204f5d66a863 9609:93211b7538d6
59 * 59 *
60 * @return The UI operations structure. 60 * @return The UI operations structure.
61 */ 61 */
62 GaimAccountUiOps *gaim_gtk_accounts_get_ui_ops(void); 62 GaimAccountUiOps *gaim_gtk_accounts_get_ui_ops(void);
63 63
64 /**
65 * Returns the gtkaccounts handle
66 *
67 * @return The handle to the GTK+ account system
68 */
69 void *gaim_gtk_account_get_handle(void);
70
71 /**
72 * Initializes the GTK+ account system
73 */
74 void gaim_gtk_account_init(void);
75
76 /**
77 * Uninitializes the GTK+ account system
78 */
79 void gaim_gtk_account_uninit(void);
80
64 #endif /* _GAIM_GTK_ACCOUNT_H_ */ 81 #endif /* _GAIM_GTK_ACCOUNT_H_ */
65