FireBirdLib - Topfield TMS PVR TAP Programming Library
ApplChannel_GetBer.c
Go to the documentation of this file.
1#include "libFireBird.h"
2
3byte ApplChannel_GetBer(byte TunerIndex, byte *BER)
4{
6
7 byte (*__ApplChannel_GetBer)(byte, byte *);
8 byte ret = 0;
9
10 __ApplChannel_GetBer = (void*)FIS_fwApplChannel_GetBer();
11 if(__ApplChannel_GetBer) ret = __ApplChannel_GetBer(TunerIndex, BER);
12
13 TRACEEXIT();
14 return ret;
15}
byte ApplChannel_GetBer(byte TunerIndex, byte *BER)
dword FIS_fwApplChannel_GetBer(void)
#define TRACEEXIT()
Definition: libFireBird.h:1244
#define TRACEENTER()
Definition: libFireBird.h:1243