diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-23 02:21:55 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-23 02:21:55 +0000 |
| commit | 1ddd7d76f3b08ebfd0788f9301dda12161ee4f48 (patch) | |
| tree | 3d29ee6f5b0ff40eb51aa0aa4e321be8a36dc051 /lib/dvb_ci/dvbci_mmi.cpp | |
| parent | 3eba2c632cc9515a424a2986d6bdeb690f15fd81 (diff) | |
| download | enigma2-1ddd7d76f3b08ebfd0788f9301dda12161ee4f48.tar.gz enigma2-1ddd7d76f3b08ebfd0788f9301dda12161ee4f48.zip | |
fixes
Diffstat (limited to 'lib/dvb_ci/dvbci_mmi.cpp')
| -rw-r--r-- | lib/dvb_ci/dvbci_mmi.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/dvb_ci/dvbci_mmi.cpp b/lib/dvb_ci/dvbci_mmi.cpp index 90d2f9f5..9032f2df 100644 --- a/lib/dvb_ci/dvbci_mmi.cpp +++ b/lib/dvb_ci/dvbci_mmi.cpp @@ -167,6 +167,8 @@ int eDVBCIMMISession::stopMMI() unsigned char tag[]={0x9f, 0x88, 0x00}; unsigned char data[]={0x00}; sendAPDU(tag, data, 1); + + return 0; } int eDVBCIMMISession::answerText(int answer) @@ -177,6 +179,8 @@ int eDVBCIMMISession::answerText(int answer) unsigned char data[]={0x00}; data[0] = answer & 0xff; sendAPDU(tag, data, 1); + + return 0; } int eDVBCIMMISession::cancelEnq() @@ -186,5 +190,7 @@ int eDVBCIMMISession::cancelEnq() unsigned char tag[]={0x9f, 0x88, 0x08}; unsigned char data[]={0x00}; sendAPDU(tag, data, 1); + + return 0; } |
