diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-10 07:03:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-10 07:03:40 +0000 |
| commit | 5be23ec5a4dcacb8b1adf1d352ad5600f426f3ed (patch) | |
| tree | 44657e281a81c513f48b81639625ed3af339b7ac /openbox/group.h | |
| parent | e4be1f860bc579fd4a0d9dee6a6ca590030a791e (diff) | |
prefix Group to ObGroup
Diffstat (limited to 'openbox/group.h')
| -rw-r--r-- | openbox/group.h | 11 |
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 |
