/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib/xml.h

  • Committer: zilio nicolas
  • Date: 2015-09-07 08:35:48 UTC
  • mto: This revision was merged to the branch mainline in revision 303.
  • Revision ID: nicolas.zilio@kit.edu-20150907083548-wcckckjtm0l84hsw
further modifications

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
typedef struct{
19
19
  xmlDocPtr* docs;
 
20
  xmlNodePtr* xml_banks;                                                                /**<pointer to xml nodes of banks in the xml file*/
 
21
  xmlNodePtr* xml_registers;                                                     /**< pointer to xml nodes of registers in the xml file*/
 
22
  unsigned int nb_registers;
 
23
  unsigned int nb_new_banks;
20
24
}pcilib_xml_context_t;
21
25
 
22
26
/**
30
34
 * this function free the xml parts of the pcilib_t running, and some libxml ashes
31
35
 * @param[in] pci the pcilib_t running
32
36
*/
33
 
void pcilib_clean_xml(pcilib_t* pci);
 
37
void pcilib_free_xml(pcilib_t* pci);
34
38
 
35
39
#endif /*_XML_*/