FreeCalypso > hg > freecalypso-reveng
changeset 314:147b8c609300
frbl/reconst/main/sys_types.h: import from TCS211
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 04 Mar 2020 23:12:22 +0000 |
parents | 9b5079989681 |
children | bc3391aa3d35 |
files | frbl/reconst/main/sys_types.h |
diffstat | 1 files changed, 28 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/frbl/reconst/main/sys_types.h Wed Mar 04 23:12:22 2020 +0000 @@ -0,0 +1,28 @@ +/********************************************************** + * GSM/GPRS TI S/W software + * + * Filename sys_types.h + * + * + * Redefine the types for the TI GSM/GPRS system software + * + **********************************************************/ + +#ifndef __SYS_TYPES_H__ +#define __SYS_TYPES_H__ + +typedef unsigned char SYS_BOOL; + +typedef unsigned char SYS_UWORD8; +typedef signed char SYS_WORD8; + +typedef unsigned short SYS_UWORD16; +typedef short SYS_WORD16; + +typedef unsigned long SYS_UWORD32; +typedef long SYS_WORD32; + + +typedef void (*SYS_FUNC)(void); /* pointer to a function */ + +#endif /* __SYS_TYPES_H__ */