new function (meta_prop_get_wm_hints): new function

2002-10-26  Havoc Pennington  <hp@pobox.com>

	* src/xprops.c (meta_prop_get_text_property): new function
	(meta_prop_get_wm_hints): new function
	(meta_prop_get_class_hint): new function
This commit is contained in:
Havoc Pennington
2002-10-26 16:40:50 +00:00
committed by Havoc Pennington
parent 5a8af8c2fb
commit 0d88e93787
8 changed files with 404 additions and 54 deletions

View File

@@ -641,3 +641,9 @@ ag_Xmalloc (unsigned long bytes)
{
return (void*) Xmalloc (bytes);
}
void*
ag_Xmalloc0 (unsigned long bytes)
{
return (void*) Xcalloc (bytes, 1);
}