DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2010 Ocean Blue Software Ltd 00004 * 00005 * This file is part of a DTVKit Software Component 00006 * You are permitted to copy, modify or distribute this file subject to the terms 00007 * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org 00008 * 00009 * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 00010 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 00011 * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. 00012 * 00013 * If you or your organisation is not a member of DTVKit then you have access 00014 * to this source code outside of the terms of the licence agreement 00015 * and you are expected to delete this and any associated files immediately. 00016 * Further information on DTVKit, membership and terms can be found at www.dtvkit.org 00017 *******************************************************************************/ 00025 /* pre-processor mechanism so multiple inclusions don't cause compilation error*/ 00026 00027 #ifndef CIPLUS_SUPPORT_H 00028 #define CIPLUS_SUPPORT_H 00029 00030 /*---includes for this file--------------------------------------------------*/ 00031 00032 /* compiler library header files */ 00033 00034 /* third party header files */ 00035 00036 /* DVBCore header files */ 00037 #include "techtype.h" 00038 #include "ci_plus_control.h" 00039 00040 /*---Constant and macro definitions for public use-----------------------------*/ 00041 00042 /*---Enumerations for public use-----------------------------------------------*/ 00043 typedef enum 00044 { 00045 CIPLUS_TUNE_TYPE_SERVICE, 00046 CIPLUS_TUNE_TYPE_TRANSPORT, 00047 CIPLUS_TUNE_TYPE_CI_SERVICE 00048 } E_CIPLUS_TUNE_TYPE; 00049 00050 /*---Global type defs for public use-------------------------------------------*/ 00051 struct s_ciplus_tune_transport 00052 { 00053 void *t_ptr; 00054 E_ACTL_SI_SRCH_REQD reqd_si; 00055 }; 00056 00057 struct s_ciplus_tune_service 00058 { 00059 void *s_ptr; 00060 E_ACTL_SI_SRCH_REQD reqd_si; 00061 U8BIT *pmt; 00062 }; 00063 00064 typedef struct 00065 { 00066 U32BIT module; 00067 E_CIPLUS_TUNE_TYPE type; 00068 union 00069 { 00070 struct s_ciplus_tune_service service; 00071 struct s_ciplus_tune_transport transport; 00072 } u; 00073 } S_CIPLUS_TUNE_DATA; 00074 00075 /*---Global Function prototypes for public use---------------------------------*/ 00076 00077 /*!************************************************************************** 00078 * @fn CIPLUS_CICallback 00079 * @brief Callback for CI queries from the CIPLUS glue. 00080 * @param S_CI_QUERY_PARAM * param Parameters for query 00081 * @return U32BIT Query-specific return code 00082 * @warning None. 00083 * @bug None. 00084 ****************************************************************************/ 00085 U32BIT CIPLUS_CICallback(S_CIP_QUERY_PARAM *param); 00086 00087 00088 /*!************************************************************************** 00089 * @fn 00090 * @brief 00091 * @param 00092 * @return 00093 * @warning 00094 * @bug 00095 ****************************************************************************/ 00096 00097 #endif /* TEMPLATE_H */ 00098 00099 /****************************************************************************** 00100 ** End of file 00101 ******************************************************************************/