]> Dogcows Code - chaz/openbox/blobdiff - openbox/group.h
prefix Group to ObGroup
[chaz/openbox] / openbox / group.h
index 7cb6a40583d0c8fcd347e521f558d24ed69a0d17..8840601ab9f3dd15f7e97c86d0c03a9d6c96fe80 100644 (file)
@@ -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
This page took 0.022267 seconds and 4 git commands to generate.