1XResourceManagerString(3) XLIB FUNCTIONS XResourceManagerString(3)
2
3
4
6 XResourceManagerString, XScreenResourceString - obtain server resource
7 properties
8
10 char *XResourceManagerString(Display *display);
11
12 char *XScreenResourceString(Screen *screen);
13
15 display Specifies the connection to the X server.
16
17 screen Specifies the screen.
18
20 The XResourceManagerString function returns the RESOURCE_MANAGER prop‐
21 erty from the server's root window of screen zero, which was returned
22 when the connection was opened using XOpenDisplay. The property is
23 converted from type STRING to the current locale. The conversion is
24 identical to that produced by XmbTextPropertyToTextList for a single
25 element STRING property. The returned string is owned by Xlib and
26 should not be freed by the client. The property value must be in a
27 format that is acceptable to XrmGetStringDatabase. If no property
28 exists, NULL is returned.
29
30 The XScreenResourceString function returns the SCREEN_RESOURCES prop‐
31 erty from the root window of the specified screen. The property is
32 converted from type STRING to the current locale. The conversion is
33 identical to that produced by XmbTextPropertyToTextList for a single
34 element STRING property. The property value must be in a format that
35 is acceptable to XrmGetStringDatabase. If no property exists, NULL is
36 returned. The caller is responsible for freeing the returned string by
37 using XFree.
38
40 Xlib - C Language X Interface
41
42
43
44X Version 11 libX11 1.6.7 XResourceManagerString(3)