summaryrefslogtreecommitdiff
path: root/src/Xw/Xw_get_typemap_info.cxx
blob: 2c4e83db00f04244217fe5bf93ea01a9b49eaa19 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57

#include <Xw_Extension.h>

	/* ifdef then trace on */
#ifdef TRACE
#define TRACE_GET_TYPEMAP_INFO
#endif

/*
   XW_STATUS Xw_get_typemap_info (atypemap,mtype,utype,dtype,ftype):
   XW_EXT_TYPEMAP *atypemap
   int *mtype		Return the maximum type number of the typemap
   int *utype		Return the User type number used in the typemap
   int *dtype		Return the User type number defined in the typemap
   int *ftype		Return the First Free type index in the typemap
   NOTE than if ftype < 0 , No more Free type exist in the typemap

	Returns XW_ERROR if the Extended Typemap is not defined
	Returns XW_SUCCESS if successful

*/

#ifdef XW_PROTOTYPE
XW_STATUS Xw_get_typemap_info (void *atypemap,int *mtype,int *utype,int *dtype,int *ftype)
#else
XW_STATUS Xw_get_typemap_info (atypemap,mtype,utype,dtype,ftype)
void *atypemap;
int *mtype,*utype,*dtype,*ftype ;
#endif /*XW_PROTOTYPE*/
{
  XW_EXT_TYPEMAP *ptypemap = (XW_EXT_TYPEMAP*)atypemap;
  int i ;

	if( !Xw_isdefine_typemap(ptypemap) ) {
	    /*ERROR*Bad EXT_TYPEMAP Address*/
	    Xw_set_error(51,"Xw_get_typemap_info",ptypemap) ;
	    return (XW_ERROR) ;
	}

	*mtype = MAXTYPE ;
	*utype = ptypemap->maxtype ;
	*dtype = 1 ;
	*ftype = -1 ;
	for( i=0 ; i< *utype ; i++ ) {
	    if( ptypemap->types[i] ) (*dtype)++ ;
	    else if( i && *ftype < 0 ) *ftype = i ;
	}
	
#ifdef  TRACE_GET_TYPEMAP_INFO
if( Xw_get_trace() ) {
    printf (" Xw_get_typemap_info(%lx,%d,%d,%d,%d)\n",
			(long ) ptypemap,*mtype,*utype,*dtype,*ftype) ;
}
#endif

	return (XW_SUCCESS);
}