| 114 /** |
114 /** |
| 115 * The Buddy List |
115 * The Buddy List |
| 116 */ |
116 */ |
| 117 struct gaim_buddy_list { |
117 struct gaim_buddy_list { |
| 118 GaimBlistNode *root; /**< The first node in the buddy list */ |
118 GaimBlistNode *root; /**< The first node in the buddy list */ |
| |
119 GHashTable *buddies; /**< Every buddy in this list */ |
| 119 struct gaim_blist_ui_ops *ui_ops; /**< The UI operations for the buddy list */ |
120 struct gaim_blist_ui_ops *ui_ops; /**< The UI operations for the buddy list */ |
| 120 |
121 |
| 121 void *ui_data; /**< UI-specific data. */ |
122 void *ui_data; /**< UI-specific data. */ |
| 122 }; |
123 }; |
| 123 |
124 |