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