59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
| 	CA-driver for TwinHan DST Frontend/Card
 | |
| 
 | |
| 	Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.com)
 | |
| 
 | |
| 	This program is free software; you can redistribute it and/or modify
 | |
| 	it under the terms of the GNU General Public License as published by
 | |
| 	the Free Software Foundation; either version 2 of the License, or
 | |
| 	(at your option) any later version.
 | |
| 
 | |
| 	This program is distributed in the hope that it will be useful,
 | |
| 	but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| 	GNU General Public License for more details.
 | |
| 
 | |
| 	You should have received a copy of the GNU General Public License
 | |
| 	along with this program; if not, write to the Free Software
 | |
| 	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | |
| */
 | |
| 
 | |
| #ifndef _DST_CA_H_
 | |
| #define _DST_CA_H_
 | |
| 
 | |
| #define RETRIES			5
 | |
| 
 | |
| 
 | |
| #define	CA_APP_INFO_ENQUIRY	0x9f8020
 | |
| #define	CA_APP_INFO		0x9f8021
 | |
| #define	CA_ENTER_MENU		0x9f8022
 | |
| #define CA_INFO_ENQUIRY		0x9f8030
 | |
| #define	CA_INFO			0x9f8031
 | |
| #define CA_PMT			0x9f8032
 | |
| #define CA_PMT_REPLY		0x9f8033
 | |
| 
 | |
| #define CA_CLOSE_MMI		0x9f8800
 | |
| #define CA_DISPLAY_CONTROL	0x9f8801
 | |
| #define CA_DISPLAY_REPLY	0x9f8802
 | |
| #define CA_TEXT_LAST		0x9f8803
 | |
| #define CA_TEXT_MORE		0x9f8804
 | |
| #define CA_KEYPAD_CONTROL	0x9f8805
 | |
| #define CA_KEYPRESS		0x9f8806
 | |
| 
 | |
| #define CA_ENQUIRY		0x9f8807
 | |
| #define CA_ANSWER		0x9f8808
 | |
| #define CA_MENU_LAST		0x9f8809
 | |
| #define CA_MENU_MORE		0x9f880a
 | |
| #define CA_MENU_ANSWER		0x9f880b
 | |
| #define CA_LIST_LAST		0x9f880c
 | |
| #define CA_LIST_MORE		0x9f880d
 | |
| 
 | |
| 
 | |
| struct dst_ca_private {
 | |
| 	struct dst_state *dst;
 | |
| 	struct dvb_device *dvbdev;
 | |
| };
 | |
| 
 | |
| 
 | |
| #endif
 |