00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 #ifndef _C_TCAP_CNX_INFO_HPP
00021 #define _C_TCAP_CNX_INFO_HPP
00022 
00023 #include "list_t.hpp"
00024 #include "map_t.hpp"
00025 
00026 
00027 
00028 typedef struct _struct_cnx_info {
00029   int                  m_cnx_id      ;
00030   char                *m_class_value ;
00031   int                  m_ossn        ; 
00032   int                  m_app_id      ;
00033   int                  m_inst_id     ;
00034   
00035 } T_CnxInfo, *T_pCnxInfo ;
00036 
00037 
00038 
00039 void       clear_CnxInfo(T_pCnxInfo P_CnxInfo) ;
00040 T_pCnxInfo create_CnxInfo() ;
00041 void       delete_CnxInfo(T_pCnxInfo *P_CnxInfo) ;
00042 
00043 typedef list_t<T_pCnxInfo> T_CnxInfoList, *T_pCnxInfoList ;
00044 typedef map_t<int, T_pCnxInfo> T_CnxInfoMap, *T_pCnxInfoMap ;
00045 
00046 
00047 #endif // _C_TCAP_CNX_INFO_HPP
00048 
00049 
00050