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: bc17c13de4
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-05-17 (Mon, 17 May 2021)
Origin message was:
------------------
- formatting code using astyle
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
22 lines
383 B
C++
22 lines
383 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
|