X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=cwmcc%2Fprop.h;h=c046f5b8b9653c2c20d90cce94b91e4643359ae7;hb=f317ceeaf28bc656e59a0f089ac11818ca5e8bd3;hp=ca49ce08d97e27d891f9bc7ce85a51d80e41f8ca;hpb=d8fc08f33d5148be6294a8469066cf6a4604e940;p=chaz%2Fopenbox diff --git a/cwmcc/prop.h b/cwmcc/prop.h index ca49ce08..c046f5b8 100644 --- a/cwmcc/prop.h +++ b/cwmcc/prop.h @@ -1,6 +1,7 @@ #ifndef __prop_h #define __prop_h +#include #include /* 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);