0023533: Unitialized variables used, IntTools_TopolTool.cxx
[occt.git] / src / Xw / Xw_get_typemap_info.cxx
CommitLineData
b311480e 1// Copyright (c) 1999-2012 OPEN CASCADE SAS
2//
3// The content of this file is subject to the Open CASCADE Technology Public
4// License Version 6.5 (the "License"). You may not use the content of this file
5// except in compliance with the License. Please obtain a copy of the License
6// at http://www.opencascade.org and read it completely before using this file.
7//
8// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10//
11// The Original Code and all software distributed under the License is
12// distributed on an "AS IS" basis, without warranty of any kind, and the
13// Initial Developer hereby disclaims all such warranties, including without
14// limitation, any warranties of merchantability, fitness for a particular
15// purpose or non-infringement. Please see the License for the specific terms
16// and conditions governing the rights and limitations under the License.
17
7fd59977 18
19#include <Xw_Extension.h>
20
b311480e 21/* ifdef then trace on */
7fd59977 22#ifdef TRACE
23#define TRACE_GET_TYPEMAP_INFO
24#endif
25
26/*
27 XW_STATUS Xw_get_typemap_info (atypemap,mtype,utype,dtype,ftype):
28 XW_EXT_TYPEMAP *atypemap
29 int *mtype Return the maximum type number of the typemap
30 int *utype Return the User type number used in the typemap
31 int *dtype Return the User type number defined in the typemap
32 int *ftype Return the First Free type index in the typemap
33 NOTE than if ftype < 0 , No more Free type exist in the typemap
34
35 Returns XW_ERROR if the Extended Typemap is not defined
36 Returns XW_SUCCESS if successful
37
38*/
39
40#ifdef XW_PROTOTYPE
41XW_STATUS Xw_get_typemap_info (void *atypemap,int *mtype,int *utype,int *dtype,int *ftype)
42#else
43XW_STATUS Xw_get_typemap_info (atypemap,mtype,utype,dtype,ftype)
44void *atypemap;
45int *mtype,*utype,*dtype,*ftype ;
46#endif /*XW_PROTOTYPE*/
47{
48 XW_EXT_TYPEMAP *ptypemap = (XW_EXT_TYPEMAP*)atypemap;
49 int i ;
50
51 if( !Xw_isdefine_typemap(ptypemap) ) {
52 /*ERROR*Bad EXT_TYPEMAP Address*/
53 Xw_set_error(51,"Xw_get_typemap_info",ptypemap) ;
54 return (XW_ERROR) ;
55 }
56
57 *mtype = MAXTYPE ;
58 *utype = ptypemap->maxtype ;
59 *dtype = 1 ;
60 *ftype = -1 ;
61 for( i=0 ; i< *utype ; i++ ) {
62 if( ptypemap->types[i] ) (*dtype)++ ;
63 else if( i && *ftype < 0 ) *ftype = i ;
64 }
65
66#ifdef TRACE_GET_TYPEMAP_INFO
67if( Xw_get_trace() ) {
68 printf (" Xw_get_typemap_info(%lx,%d,%d,%d,%d)\n",
69 (long ) ptypemap,*mtype,*utype,*dtype,*ftype) ;
70}
71#endif
72
73 return (XW_SUCCESS);
74}