mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 15:02:58 +02:00
27 lines
488 B
C++
27 lines
488 B
C++
#ifndef __dvbci_dvbci_appmgr_h
|
|
#define __dvbci_dvbci_appmgr_h
|
|
|
|
#include "dvbci_session.h"
|
|
|
|
class eDVBCIApplicationManagerSession: public eDVBCISession
|
|
{
|
|
enum {
|
|
stateFinal=statePrivate
|
|
};
|
|
|
|
tSlot *slot;
|
|
|
|
int wantmenu;
|
|
int receivedAPDU(const unsigned char *tag, const void *data, int len);
|
|
int doAction();
|
|
bool readBlist();
|
|
int checkBlist();
|
|
public:
|
|
eDVBCIApplicationManagerSession(tSlot *tslot);
|
|
~eDVBCIApplicationManagerSession();
|
|
int enterMenu();
|
|
int startMMI();
|
|
};
|
|
|
|
#endif
|