]> Dogcows Code - chaz/openbox/blobdiff - cwmcc/prop.h
add get functions for all the client properties
[chaz/openbox] / cwmcc / prop.h
index ca49ce08d97e27d891f9bc7ce85a51d80e41f8ca..c046f5b8b9653c2c20d90cce94b91e4643359ae7 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __prop_h
 #define __prop_h
 
+#include <glib.h>
 #include <X11/Xlib.h>
 
 /* with the exception of prop_get32, all other prop_get_* functions require
@@ -15,7 +16,7 @@ gboolean prop_get_array32(Window win, Atom prop, Atom type, gulong **ret,
 gboolean prop_get_string(Window win, Atom prop, Atom type, char **ret);
 
 /*! Gets a string from a property which is stored in UTF-8 encoding. */
-gboolean prop_get_string_utf(Window win, Atom prop, char **ret);
+gboolean prop_get_string_utf8(Window win, Atom prop, char **ret);
 
 /*! Gets a string from a property which is stored in the current local
   encoding. The returned string is in UTF-8 encoding. */
@@ -23,14 +24,14 @@ gboolean prop_get_string_locale(Window win, Atom prop, char **ret);
 
 /*! Gets a null terminated array of strings from a property which is stored in
   UTF-8 encoding. */
-gboolean prop_get_strings_utf(Window win, Atom prop, Atom type, char ***ret);
+gboolean prop_get_strings_utf8(Window win, Atom prop, char ***ret);
 
 /*! Gets a null terminated array of strings from a property which is stored in
   the current locale encoding. The returned string is in UTF-8 encoding. */
-gboolean prop_get_strings_locale(Window win, Atom prop, Atom type,char ***ret);
+gboolean prop_get_strings_locale(Window win, Atom prop, char ***ret);
 
 /*! Sets a null terminated array of strings in a property encoded as UTF-8. */
-void prop_set_strings_utf(Window win, Atom prop, Atom type, char **strs);
+void prop_set_strings_utf8(Window win, Atom prop, char **strs);
 
 void prop_erase(Window win, Atom prop);
 
This page took 0.026335 seconds and 4 git commands to generate.