From 5be23ec5a4dcacb8b1adf1d352ad5600f426f3ed Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 10 Jul 2003 07:03:40 +0000 Subject: prefix Group to ObGroup --- openbox/group.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'openbox/group.h') diff --git a/openbox/group.h b/openbox/group.h index 7cb6a405..8840601a 100644 --- a/openbox/group.h +++ b/openbox/group.h @@ -4,22 +4,25 @@ #include #include +typedef struct _ObGroup ObGroup; + struct _ObClient; -typedef struct Group { +struct _ObGroup +{ Window leader; /* list of clients */ GSList *members; -} Group; +}; extern GHashTable *group_map; void group_startup(); void group_shutdown(); -Group *group_add(Window leader, struct _ObClient *client); +ObGroup *group_add(Window leader, struct _ObClient *client); -void group_remove(Group *self, struct _ObClient *client); +void group_remove(ObGroup *self, struct _ObClient *client); #endif -- cgit v1.2.3