MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
techtype.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2006 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 #ifndef _TECHTYPE_H
26 #define _TECHTYPE_H
27 
28 /****************************************************************************
29  * Type Bits Bytes Low Value High Value
30  * --------------------------------------------------------------------------
31  * signed char 8 1 -128 127
32  * unsigned char 8 1 0 255
33  * --------------------------------------------------------------------------
34  * short 16 2 -32,768 32,767
35  * unsigned short 16 2 0 65,535
36  * --------------------------------------------------------------------------
37  * bool 32 4 0 1
38  * enum 32 4 -2,147,483,648 2,147,483,647
39  * int 32 4 -2,147,483,648 2,147,483,647
40  * unsigned 32 4 0 4,294,967,295
41  * unsigned int 32 4 0 4,294,967,295
42  * long 32 4 -2,147,483,648 2,147,483,647
43  * unsigned long 32 4 0 4,294,967,295
44  * --------------------------------------------------------------------------
45  * float 32 4 1.17549435E-38F 3.40282347E+38F
46  * --------------------------------------------------------------------------
47  * double 64 8 2.2250738585072014E-308
48  * 1.7976931348623157E+308
49  ****************************************************************************/
50 #include <stddef.h>
51 #ifndef WIN32
52  #include <stdint.h>
53 #endif
54 
55 /****************************************************************************
56  * System MACRO Definitions
57  ****************************************************************************/
58 
59 #ifndef USE_UNWANTED_PARAM
60 /* MACRO TO PREVENT "parameter not used" WARNING */
61 /* In some cases, function parameter lists are pre-defined and cannot be */
62 /* changed, even though the parameters are not used. Such cases produce */
63 /* numerous unnecessary warnings which make it difficult to spot important */
64 /* warnings. This macro can be used in such circumstances to fool the */
65 /* compiler into thinking the function parameter is used without creating */
66 /* unwanted code. */
67  #ifdef NDEBUG
68  #define USE_UNWANTED_PARAM(param)
69  #else
70  #define USE_UNWANTED_PARAM(param) param = param
71  #endif
72 #endif
73 
74 /****************************************************************************
75  * Remove CONSTANT Definitions
76  ****************************************************************************/
77 
78 #undef FALSE
79 #undef TRUE
80 
81 /****************************************************************************
82  * System CONSTANT Definitions
83  ****************************************************************************/
84 
85 #define FALSE 0
86 #define TRUE 1
87 
88 /* System DATA TYPE SIZE Definitions */
89 
90 #ifndef WIN32
91  #define PRT_S32 "%d"
92  #define PRT_U32 "%u"
93 typedef uint8_t U8BIT;
94 typedef int8_t S8BIT;
95 typedef uint16_t U16BIT;
96 typedef int16_t S16BIT;
97 typedef uint32_t U32BIT;
98 typedef int32_t S32BIT;
99 typedef U8BIT *pU8BIT;
100 #else
101  #define PRT_S32 "%ld"
102  #define PRT_U32 "%lu"
103 typedef unsigned char U8BIT;
104 typedef signed char S8BIT;
105 typedef unsigned short U16BIT;
106 typedef signed short S16BIT;
107 typedef unsigned long U32BIT;
108 typedef signed long S32BIT;
109 typedef unsigned char *pU8BIT;
110 #endif
111 
112 typedef U8BIT BOOLEAN;
113 
114 #endif /* _TECHTYPE_H */
int16_t S16BIT
Definition: techtype.h:96
uint8_t U8BIT
Definition: techtype.h:93
int8_t S8BIT
Definition: techtype.h:94
int32_t S32BIT
Definition: techtype.h:98
uint16_t U16BIT
Definition: techtype.h:95
U8BIT * pU8BIT
Definition: techtype.h:99
U8BIT BOOLEAN
Definition: techtype.h:112
uint32_t U32BIT
Definition: techtype.h:97