summaryrefslogtreecommitdiff
path: root/openbox/client.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-26 05:36:18 +0000
committerDana Jansens <danakj@orodu.net>2003-03-26 05:36:18 +0000
commitfef5d0d9bca56dfeec86ddf0867e64c908a1f97d (patch)
treeecbc43b5ef88b41b7d854b162dc635013cfe462a /openbox/client.h
parentc9c72cbe294b7924304a226f867686f3d05ff37a (diff)
use rgba icons for clients
Diffstat (limited to 'openbox/client.h')
-rw-r--r--openbox/client.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/client.h b/openbox/client.h
index 808f4e5f..27d780c6 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -11,7 +11,7 @@ struct Frame;
/*! Holds an icon in ARGB format */
typedef struct Icon {
- unsigned long w, h;
+ unsigned long width, height;
unsigned long *data;
} Icon;
@@ -457,4 +457,6 @@ void client_setup_decor_and_functions(Client *self);
/*! Retrieves the window's type and sets Client->type */
void client_get_type(Client *self);
+Icon *client_icon(Client *self, int w, int h);
+
#endif