mirror of
https://github.com/0intro/wmii
synced 2024-11-29 17:13:11 +03:00
13 lines
328 B
C
13 lines
328 B
C
/* Copyright ©2007-2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "../x11.h"
|
|
|
|
ulong
|
|
getproperty(Window *w, char *prop, char *type, Atom *actual,
|
|
ulong offset, uchar **ret, ulong length) {
|
|
int format;
|
|
|
|
return getprop(w, prop, type, actual, &format, offset, ret, length);
|
|
}
|