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