1XmDestroyPixmap(library call) XmDestroyPixmap(library call)
2
3
4
6 XmDestroyPixmap — A pixmap caching function that removes a pixmap from
7 the pixmap cache
8
10 #include <Xm/Xm.h>
11 Boolean XmDestroyPixmap(
12 Screen * screen,
13 Pixmap pixmap);
14
16 XmDestroyPixmap removes pixmaps that are no longer used. Pixmaps are
17 completely freed only when there is no further reference to them.
18
19 screen Specifies the display screen for which the pixmap was
20 requested
21
22 pixmap Specifies the pixmap to be destroyed
23
25 Returns True when successful; returns False if there is no matching
26 screen and pixmap in the pixmap cache.
27
29 XmInstallImage(3), XmUninstallImage(3), and XmGetPixmap(3).
30
31
32
33 XmDestroyPixmap(library call)