]> Dogcows Code - chaz/openbox/blobdiff - openbox/client.h
prefix Group to ObGroup
[chaz/openbox] / openbox / client.h
index ecfb17d1faec124404ae21b86416231a080a256f..52005fcb309556f0d32a34e29c0f93ec6974a3e4 100644 (file)
 #include <X11/Xlib.h>
 
 struct Frame;
-struct Group;
+struct _ObGroup;
 
 typedef struct _ObClient     ObClient;
 typedef struct _ObClientIcon ObClientIcon;
 
 /* The value in client.transient_for indicating it is a transient for its
    group instead of for a single window */
-#define TRAN_GROUP ((void*)~0l)
+#define OB_TRAN_GROUP ((void*)~0l)
 
 /*! Holds an icon in ARGB format */
 struct _ObClientIcon
@@ -81,14 +81,14 @@ struct _ObClient
     int ignore_unmaps;
 
     /*! The id of the group the window belongs to */
-    struct Group *group;
+    struct _ObGroup *group;
     /*! Whether or not the client is a transient window. This is guaranteed to 
       be TRUE if transient_for != NULL, but not guaranteed to be FALSE if
       transient_for == NULL. */
     gboolean transient;
     /*! The client which this client is a transient (child) for.
       A value of TRAN_GROUP signifies that the window is a transient for all
-      members of its Group, and is not a valid pointer to be followed in this
+      members of its ObGroup, and is not a valid pointer to be followed in this
       case.
      */
     ObClient *transient_for;
This page took 0.020962 seconds and 4 git commands to generate.