1XmRemoveProtocols(library call) XmRemoveProtocols(library call)
2
3
4
6 XmRemoveProtocols — A VendorShell function that removes the protocols
7 from the protocol manager and deallocates the internal tables
8
10 #include <Xm/Xm.h>
11 #include <Xm/Protocols.h>
12 void XmRemoveProtocols(
13 Widget shell,
14 Atom property,
15 Atom * protocols,
16 Cardinal num_protocols);
17
19 XmRemoveProtocols removes the protocols from the protocol manager and
20 deallocates the internal tables. If any of the protocols are active, it
21 will update the handlers and update the property if shell is realized.
22
23 XmRemoveWMProtocols is a convenience interface. It calls XmRemovePro‐
24 tocols with the property value set to the atom returned by interning
25 WM_PROTOCOLS.
26
27 shell Specifies the widget with which the protocol property is
28 associated
29
30 property Specifies the protocol property
31
32 protocols Specifies the protocol atoms
33
34 num_protocols
35 Specifies the number of elements in protocols
36
37 For a complete definition of VendorShell and its associated resources,
38 see VendorShell(3).
39
41 VendorShell(3), XmAddProtocols(3), XmInternAtom(3), and XmRemoveWMPro‐
42 tocols(3).
43
44
45
46 XmRemoveProtocols(library call)