DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
cldsmdbg.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2013 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  *******************************************************************************/
24 #ifndef _DSMDEBUG_H_
25 #define _DSMDEBUG_H_
26 /*-------------------------------- Includes ----------------------------------*/
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 /*-------------------------------- Defines -----------------------------------*/
32 
33 /****************
34  * Debug states *
35  ****************/
36 /* General */
37 #define DD_GEN (1 << 0)
38 /* Object Carousel */
39 #define DD_OC (1 << 1)
40 /* Section Filtering */
41 #define DD_SF (1 << 2)
42 /* Timers */
43 #define DD_TIMER (1 << 3)
44 /* Stream Events */
45 #define DD_SE (1 << 4)
46 /* Load manager */
47 #define DD_LM (1 << 5)
48 /* Object Loading */
49 #define DD_OBJ (1 << 6)
50 /* Data Carousel */
51 #define DD_DC (1 << 7)
52 /* SI Query */
53 #define DD_QUERY (1 << 8)
54 /* Modules */
55 #define DD_MOD (1 << 9)
56 
57 #define DD_ALL ((1 << 10)-1)
58 
59 #define DD_SSF (1 << 11)
60 
61 /*-------------------------------- Types -------------------------------------*/
62 
63 /* standard signature of printf */
64 typedef int (*clDsmPrintFunc_t)( const char * format, ... );
65 
66 /*------------------------------ Exported Data -----------------------------*/
67 
68 
69 /*------------------------------ Prototypes ----------------------------------*/
70 
81 void clDsmSetPrintFuncs( clDsmPrintFunc_t errorFunc, clDsmPrintFunc_t warnFunc,
82  clDsmPrintFunc_t debugFunc, clDsmPrintFunc_t infoFunc );
83 
89 void clDsmSetPrintState( U32BIT state );
90 
91 /*----------------------------------------------------------------------------*/
92 #ifdef __cplusplus
93 }
94 #endif
95 #endif /* _DSMDEBUG_H_ */
void clDsmSetPrintFuncs(clDsmPrintFunc_t errorFunc, clDsmPrintFunc_t warnFunc, clDsmPrintFunc_t debugFunc, clDsmPrintFunc_t infoFunc)
Sets debug print functions for four different levels of detail. Any of these parameters can be set to...
Definition: clDsmMain.c:143
void clDsmSetPrintState(U32BIT state)
Sets debug print state to select areas of debug.
Definition: clDsmMain.c:154