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