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