comparison src/cs/system/main/sys_types.h @ 52:1eb391057168

Main and Audio source directories lowercased
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 19 Jul 2018 22:49:10 +0000
parents src/cs/system/Main/sys_types.h@b6a5e36de839
children
comparison
equal deleted inserted replaced
51:daf96987cb39 52:1eb391057168
1 /**********************************************************
2 * GSM/GPRS TI S/W software
3 *
4 * Filename sys_types.h
5 *
6 *
7 * Redefine the types for the TI GSM/GPRS system software
8 *
9 **********************************************************/
10
11 #ifndef __SYS_TYPES_H__
12 #define __SYS_TYPES_H__
13
14 typedef unsigned char SYS_BOOL;
15
16 typedef unsigned char SYS_UWORD8;
17 typedef signed char SYS_WORD8;
18
19 typedef unsigned short SYS_UWORD16;
20 typedef short SYS_WORD16;
21
22 typedef unsigned long SYS_UWORD32;
23 typedef long SYS_WORD32;
24
25
26 typedef void (*SYS_FUNC)(void); /* pointer to a function */
27
28 #endif /* __SYS_TYPES_H__ */