FireBirdLib - Topfield TMS PVR TAP Programming Library
ezxml_parse_file.c
Go to the documentation of this file.
1#include "libFireBird.h"
2
3ezxml_t ezxml_parse_file(const char *file)
4{
6
7 ezxml_t (*__ezxml_parse_file)(const char *);
8 ezxml_t ret = 0;
9
10 __ezxml_parse_file = (void*)FIS_fwezxml_parse_file();
11 if(__ezxml_parse_file)
12 {
13 //call the function
14 ret = __ezxml_parse_file(file);
15 }
16
17 TRACEEXIT();
18 return ret;
19}
dword FIS_fwezxml_parse_file(void)
ezxml_t ezxml_parse_file(const char *file)
#define TRACEEXIT()
Definition: libFireBird.h:1244
#define TRACEENTER()
Definition: libFireBird.h:1243
struct ezxml * ezxml_t
Definition: libFireBird.h:1389