FireBirdLib - Topfield TMS PVR TAP Programming Library
Appl_ExportChData.c
Go to the documentation of this file.
1#include "libFireBird.h"
2
3bool Appl_ExportChData(char *FileName)
4{
6
7 bool (*__Appl_ExportChData)(char*);
8 bool ret = FALSE;
9
10 __Appl_ExportChData = (void*)FIS_fwAppl_ExportChData();
11 if(__Appl_ExportChData) ret = __Appl_ExportChData(FileName);
12
13 TRACEEXIT();
14 return ret;
15}
bool Appl_ExportChData(char *FileName)
#define bool
Definition: ELF.h:26
dword FIS_fwAppl_ExportChData(void)
#define TRACEEXIT()
Definition: libFireBird.h:1244
#define TRACEENTER()
Definition: libFireBird.h:1243