mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 15:02:58 +02:00
Conflicts: libarmbox/dmx.cpp libgeneric-pc/video_lib.h libspark/dmx.cpp Signed-off-by: Thilo Graf <dbt@novatux.de>
28 lines
516 B
C++
28 lines
516 B
C++
#ifndef __dvbci_dvbci_appmgr_h
|
|
#define __dvbci_dvbci_appmgr_h
|
|
|
|
#include "dvbci_session.h"
|
|
|
|
class eDVBCIApplicationManagerSession: public eDVBCISession
|
|
{
|
|
enum
|
|
{
|
|
stateFinal = statePrivate
|
|
};
|
|
|
|
eDVBCISlot *slot;
|
|
|
|
int wantmenu;
|
|
int receivedAPDU(const unsigned char *tag, const void *data, int len);
|
|
int doAction();
|
|
bool readBlist();
|
|
int checkBlist();
|
|
public:
|
|
eDVBCIApplicationManagerSession(eDVBCISlot *tslot);
|
|
~eDVBCIApplicationManagerSession();
|
|
int enterMenu();
|
|
int startMMI();
|
|
};
|
|
|
|
#endif
|