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