mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
Origin commit data
------------------
Branch: master
Commit: ca27972f16
Author: max_10 <max_10@gmx.de>
Date: 2015-11-15 (Sun, 15 Nov 2015)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
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
|