mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
21 lines
370 B
C++
21 lines
370 B
C++
#ifndef __dvbci_dvbci_resmgr_h
|
|
#define __dvbci_dvbci_resmgr_h
|
|
|
|
#include "dvbci_session.h"
|
|
|
|
class eDVBCIResourceManagerSession: public eDVBCISession
|
|
{
|
|
enum {
|
|
stateFirstProfileEnquiry=statePrivate,
|
|
stateProfileChange,
|
|
stateProfileEnquiry,
|
|
stateFinal
|
|
};
|
|
int receivedAPDU(const unsigned char *tag, const void *data, int len);
|
|
int doAction();
|
|
public:
|
|
|
|
};
|
|
|
|
#endif
|