summaryrefslogtreecommitdiff
path: root/cwmcc/client_props.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-11 03:35:14 +0000
committerDana Jansens <danakj@orodu.net>2003-04-11 03:35:14 +0000
commitd976fc6bb1baebfb805c2f46e56306656fef5922 (patch)
treec6c734ac3fdb796f335d9c635278b0d02835e383 /cwmcc/client_props.h
parentf317ceeaf28bc656e59a0f089ac11818ca5e8bd3 (diff)
add set functions for all the client props that need em
Diffstat (limited to 'cwmcc/client_props.h')
-rw-r--r--cwmcc/client_props.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/cwmcc/client_props.h b/cwmcc/client_props.h
index d73344b4..3f0153f7 100644
--- a/cwmcc/client_props.h
+++ b/cwmcc/client_props.h
@@ -3,7 +3,8 @@
void cwmcc_client_get_protocols(Window win, Atom **protocols);
-int cwmcc_client_get_wm_state(Window win);
+void cwmcc_client_get_wm_state(Window win, gulong *state);
+void cwmcc_client_set_wm_state(Window win, gulong state);
void cwmcc_client_get_name(Window win, char **name);
@@ -55,10 +56,13 @@ struct Cwmcc_MwmHints {
void cwmcc_client_get_mwmhints(Window win, struct Cwmcc_MwmHints *hints);
void cwmcc_client_get_desktop(Window win, gulong *desk);
+void cwmcc_client_set_desktop(Window win, gulong desk);
void cwmcc_client_get_type(Window win, gulong **types);
+void cwmcc_client_set_type(Window win, gulong *types);
void cwmcc_client_get_state(Window win, gulong **states);
+void cwmcc_client_set_state(Window win, gulong *states);
void cwmcc_client_get_strut(Window win, int *l, int *t, int *r, int *b);