summaryrefslogtreecommitdiff
path: root/src/Xw/Xw_isdefine_fontmap.cxx
blob: ccafdda67c2a7bd626f058d972298fc648eff472 (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_FONTMAP
#endif

/*
   XW_STATUS Xw_isdefine_fontmap (afontmap):
   XW_EXT_FONTMAP *afontmap


	Returns XW_ERROR if Extended Fontmap address is not properly defined
	Returns XW_SUCCESS if Successful      

*/

#ifdef XW_PROTOTYPE
XW_STATUS Xw_isdefine_fontmap (void* afontmap)
#else
XW_STATUS Xw_isdefine_fontmap (afontmap)
void* afontmap;
#endif /*XW_PROTOTYPE*/
{
XW_EXT_FONTMAP *pfontmap = (XW_EXT_FONTMAP*)afontmap;
XW_STATUS status = XW_ERROR ;

	if( pfontmap && (pfontmap->type == FONTMAP_TYPE) ) {
	    status = XW_SUCCESS ;
	}


#ifdef  TRACE_ISDEFINE_FONTMAP
if( Xw_get_trace() > 1 ) {
    printf (" %d = Xw_isdefine_fontmap(%lx)\n",status,(long ) pfontmap) ;
}
#endif

	return (status);
}