1XChangeSaveSet(3) XLIB FUNCTIONS XChangeSaveSet(3)
2
3
4
6 XChangeSaveSet, XAddToSaveSet, XRemoveFromSaveSet - change a client's
7 save set
8
10 int XChangeSaveSet(Display *display, Window w, int change_mode);
11
12 int XAddToSaveSet(Display *display, Window w);
13
14 int XRemoveFromSaveSet(Display *display, Window w);
15
17 change_mode
18 Specifies the mode. You can pass SetModeInsert or SetModā
19 eDelete.
20
21 display Specifies the connection to the X server.
22
23 w Specifies the window that you want to add or delete from the
24 client's save-set.
25
27 Depending on the specified mode, XChangeSaveSet either inserts or
28 deletes the specified window from the client's save-set. The specified
29 window must have been created by some other client, or a BadMatch error
30 results.
31
32 XChangeSaveSet can generate BadMatch, BadValue, and BadWindow errors.
33
34 The XAddToSaveSet function adds the specified window to the client's
35 save-set. The specified window must have been created by some other
36 client, or a BadMatch error results.
37
38 XAddToSaveSet can generate BadMatch and BadWindow errors.
39
40 The XRemoveFromSaveSet function removes the specified window from the
41 client's save-set. The specified window must have been created by some
42 other client, or a BadMatch error results.
43
44 XRemoveFromSaveSet can generate BadMatch and BadWindow errors.
45
47 BadMatch Some argument or pair of arguments has the correct type and
48 range but fails to match in some other way required by the
49 request.
50
51 BadValue Some numeric value falls outside the range of values accepted
52 by the request. Unless a specific range is specified for an
53 argument, the full range defined by the argument's type is
54 accepted. Any argument defined as a set of alternatives can
55 generate this error.
56
57 BadWindow A value for a Window argument does not name a defined Window.
58
60 XReparentWindow(3)
61 Xlib - C Language X Interface
62
63
64
65X Version 11 libX11 1.6.4 XChangeSaveSet(3)