mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 15:02:43 +02:00
Origin commit data
------------------
Branch: master
Commit: 42811846d7
Author: max_10 <max_10@gmx.de>
Date: 2017-10-23 (Mon, 23 Oct 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
25 lines
491 B
C++
25 lines
491 B
C++
#ifndef __dvbci_dvbci_mmi_h
|
|
#define __dvbci_dvbci_mmi_h
|
|
|
|
#include "dvbci_session.h"
|
|
|
|
class eDVBCIMMISession: public eDVBCISession
|
|
{
|
|
enum {
|
|
stateDisplayReply=statePrivate, stateFakeOK, stateIdle
|
|
};
|
|
|
|
int receivedAPDU(const unsigned char *tag, const void *data, int len);
|
|
int doAction();
|
|
eDVBCISlot *slot;
|
|
public:
|
|
eDVBCIMMISession(eDVBCISlot *tslot);
|
|
~eDVBCIMMISession();
|
|
int stopMMI();
|
|
int answerText(int answer);
|
|
int answerEnq(char *answer, int len);
|
|
int cancelEnq();
|
|
};
|
|
|
|
#endif
|