DVBCore  17.9.0
Open Source DVB Engine
 All Data Structures Files Functions Typedefs Macros Pages
stbsic.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
25 // pre-processor mechanism so multiple inclusions don't cause compilation error
26 
27 #ifndef _STBSIC_H
28 
29 #define _STBSIC_H
30 
31 #include "techtype.h"
32 
33 //---Constant and macro definitions for public use-----------------------------
34 
35 #define SI_EVENT_SEARCH 0x00000001
36 #define SI_EVENT_UPDATE 0x00000002
37 #define SI_EVENT_SERVICE_CHANGE 0x00000004
38 #define SI_EVENT_EXTENDED_EVENT 0x00000008
39 #define SI_EVENT_STOP 0x00000010
40 #define SI_EVENT_ACTION_FILTER 0x00000020
41 
42 //---Enumerations for public use-----------------------------------------------
43 
44 //---Global type defs for public use-------------------------------------------
45 
46 typedef enum
47 {
48  SI_SEARCHING,
49  SI_UPDATING,
50  SI_STOPPED
51 } E_STB_SI_STATUS;
52 
53 //---Global Function prototypes for public use---------------------------------
54 
55 #if 0
56 void STB_SIInitialise(void);
57 void STB_SISendEvent(U8BIT path, U32BIT events);
58 E_STB_SI_STATUS STB_SIGetStatus(U8BIT path);
59 #endif
60 
61 void STB_SITerrInitialise(void);
62 void STB_SITerrSendEvent(U8BIT path, U32BIT events);
63 E_STB_SI_STATUS STB_SITerrGetStatus(U8BIT path);
64 
65 #endif // _STBSIC_H
66 
67 //*****************************************************************************
68 // End of file
69 //*****************************************************************************
E_STB_SI_STATUS STB_SITerrGetStatus(U8BIT path)
Reads the SI status.
Definition: stbsiflt.c:2175
System Wide Global Technical Data Type Definitions.
void STB_SITerrSendEvent(U8BIT path, U32BIT events)
Sends an event to STB layer SI Terrestrial engine.
Definition: stbsiflt.c:2140
void STB_SITerrInitialise(void)
Initialises STB layer SI engine - terrestrial version.
Definition: stbsiflt.c:2092