]> Dogcows Code - chaz/openbox/blobdiff - openbox/group.h
no more interactive mouse actions, they are evil etc. actions now "feel" much more...
[chaz/openbox] / openbox / group.h
index dfc6e883f6798d0727d1c6934c71defa25033974..293f6b013cae5b76108eec4797058314de104489 100644 (file)
@@ -4,22 +4,25 @@
 #include <X11/Xlib.h>
 #include <glib.h>
 
-struct Client;
+typedef struct _ObGroup ObGroup;
 
-typedef struct Group {
+struct _ObClient;
+
+struct _ObGroup
+{
     Window leader;
 
     /* list of clients */
     GSList *members;
-} Group;
+};
 
 extern GHashTable *group_map;
 
-void group_startup();
-void group_shutdown();
+void group_startup(gboolean reconfig);
+void group_shutdown(gboolean reconfig);
 
-Group *group_add(Window leader, struct Client *client);
+ObGroup *group_add(Window leader, struct _ObClient *client);
 
-void group_remove(Group *self, struct Client *client);
+void group_remove(ObGroup *self, struct _ObClient *client);
 
 #endif
This page took 0.026084 seconds and 4 git commands to generate.