mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
25 lines
450 B
C++
25 lines
450 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();
|
|
public:
|
|
eDVBCIApplicationManagerSession(tSlot *tslot);
|
|
~eDVBCIApplicationManagerSession();
|
|
int enterMenu();
|
|
int startMMI();
|
|
};
|
|
|
|
#endif
|