1XmRemoveProtocolCallback(library call) XmRemoveProtocolCallback(library call)
2
3
4
6 XmRemoveProtocolCallback — A VendorShell function that removes a call‐
7 back from the internal list
8
10 #include <Xm/Xm.h>
11 #include <Xm/Protocols.h>
12 void XmRemoveProtocolCallback(
13 Widget shell,
14 Atom property,
15 Atom protocol,
16 XtCallbackProc callback,
17 XtPointer closure);
18
20 XmRemoveProtocolCallback removes a callback from the internal list.
21
22 XmRemoveWMProtocolCallback is a convenience interface. It calls XmRe‐
23 moveProtocolCallback with the property value set to the atom returned
24 by interning WM_PROTOCOLS.
25
26 shell Specifies the widget with which the protocol property is
27 associated
28
29 property Specifies the protocol property
30
31 protocol Specifies the protocol atom
32
33 callback Specifies the procedure to call when a protocol message is
34 received
35
36 closure Specifies the client data to be passed to the callback when
37 it is invoked
38
39 For a complete definition of VendorShell and its associated resources,
40 see VendorShell(3).
41
43 VendorShell(3), XmAddProtocolCallback(3), XmInternAtom(3), and XmRe‐
44 moveWMProtocolCallback(3).
45
46
47
48 XmRemoveProtocolCallback(library call)