remap: fix counters for mmx and sse remap
[pulseaudio-mirror.git] / src / pulsecore / x11prop.c
blob873a76e7d4ef6468663ff03094d48fd1070a3c9d
1 /***
2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
26 #include <string.h>
28 #include <X11/Xlib.h>
29 #include <X11/Xatom.h>
31 #include "x11prop.h"
33 void pa_x11_set_prop(Display *d, const char *name, const char *data) {
34 Atom a = XInternAtom(d, name, False);
35 XChangeProperty(d, RootWindow(d, 0), a, XA_STRING, 8, PropModeReplace, (const unsigned char*) data, (int) (strlen(data)+1));
38 void pa_x11_del_prop(Display *d, const char *name) {
39 Atom a = XInternAtom(d, name, False);
40 XDeleteProperty(d, RootWindow(d, 0), a);
43 char* pa_x11_get_prop(Display *d, const char *name, char *p, size_t l) {
44 Atom actual_type;
45 int actual_format;
46 unsigned long nitems;
47 unsigned long nbytes_after;
48 unsigned char *prop = NULL;
49 char *ret = NULL;
51 Atom a = XInternAtom(d, name, False);
52 if (XGetWindowProperty(d, RootWindow(d, 0), a, 0, (long) ((l+2)/4), False, XA_STRING, &actual_type, &actual_format, &nitems, &nbytes_after, &prop) != Success)
53 goto finish;
55 if (actual_type != XA_STRING)
56 goto finish;
58 memcpy(p, prop, nitems);
59 p[nitems] = 0;
61 ret = p;
63 finish:
65 if (prop)
66 XFree(prop);
68 return ret;