FreeCalypso > hg > efr-experiments
view src/typedef.h @ 2:c511bfb36c2a
beginning of EFR2 decoder, using AMR version of AGC module
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 03 Apr 2024 05:47:51 +0000 |
parents | 56410792419a |
children |
line wrap: on
line source
/*_____________________ | | | Basic types. | |_____________________| */ #if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(_MSC_VER) || defined(__ZTC__) typedef short Word16; typedef long Word32; typedef int Flag; #elif defined(__sun) typedef short Word16; typedef long Word32; typedef int Flag; #elif defined(__unix__) || defined(__unix) typedef short Word16; typedef int Word32; typedef int Flag; #endif