blob: 669dcb7850c8846212bf78926cff607a7a6baf63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include <Xw_Extension.h>
/* ifdef then trace on */
#ifdef TRACE
#define TRACE_ISDEFINE_COLORMAP
#endif
/*
XW_STATUS Xw_isdefine_colormap (acolormap):
XW_EXT_COLORMAP *acolormap
Returns XW_ERROR if Extended Colormap address is not properly defined
Returns XW_SUCCESS if Successful
*/
#ifdef XW_PROTOTYPE
XW_STATUS Xw_isdefine_colormap (void* acolormap)
#else
XW_STATUS Xw_isdefine_colormap (acolormap)
void* acolormap;
#endif /*XW_PROTOTYPE*/
{
XW_EXT_COLORMAP *pcolormap = (XW_EXT_COLORMAP*)acolormap ;
XW_STATUS status = XW_ERROR ;
if( pcolormap && (pcolormap->type == COLORMAP_TYPE) ) {
status = XW_SUCCESS ;
}
#ifdef TRACE_ISDEFINE_COLORMAP
if( Xw_get_trace() > 1 ) {
printf (" %d = Xw_isdefine_colormap(%lx)\n",status,(long ) pcolormap) ;
}
#endif
return (status);
}
|