diff src/blist.h @ 10008:50c1724d5e59

[gaim-migrate @ 10925] Lots of needless shuffling of stuff around. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 10 Sep 2004 04:43:31 +0000
parents ccb638cf8642
children a38881ec9c0f
line wrap: on
line diff
--- a/src/blist.h	Fri Sep 10 04:30:37 2004 +0000
+++ b/src/blist.h	Fri Sep 10 04:43:31 2004 +0000
@@ -40,10 +40,6 @@
 typedef struct _GaimContact GaimContact;
 typedef struct _GaimBuddy GaimBuddy;
 
-#include "account.h"
-#include "buddyicon.h"
-#include "status.h"
-
 /**************************************************************************/
 /* Enumerations                                                           */
 /**************************************************************************/
@@ -77,12 +73,16 @@
 
 typedef enum
 {
-	GAIM_BLIST_NODE_FLAG_NO_SAVE = 1,	/**< node should not be saved with the buddy list */
+	GAIM_BLIST_NODE_FLAG_NO_SAVE = 1 /**< node should not be saved with the buddy list */
+
 } GaimBlistNodeFlags;
 
 #define GAIM_BLIST_NODE_HAS_FLAG(b, f) ((b)->flags & (f))
 #define GAIM_BLIST_NODE_SHOULD_SAVE(b) (! GAIM_BLIST_NODE_HAS_FLAG(b, GAIM_BLIST_NODE_FLAG_NO_SAVE))
 
+#include "account.h"
+#include "buddyicon.h"
+#include "status.h"
 
 /**************************************************************************/
 /* Data Structures                                                        */