summaryrefslogtreecommitdiff
path: root/openbox/group.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/group.h')
-rw-r--r--openbox/group.h11
1 files changed, 7 insertions, 4 deletions
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 <X11/Xlib.h>
#include <glib.h>
+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