1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef GSM_H
- #define GSM_H
- #ifdef __cplusplus
- # define NeedFunctionPrototypes 1
- #endif
- #if __STDC__
- # define NeedFunctionPrototypes 1
- #endif
- #ifdef _NO_PROTO
- # undef NeedFunctionPrototypes
- #endif
- #ifdef NeedFunctionPrototypes
- # include <stdio.h> /* for FILE * */
- #endif
- #undef GSM_P
- #if NeedFunctionPrototypes
- # define GSM_P( protos ) protos
- #else
- # define GSM_P( protos ) ( )
- #endif
- typedef struct gsm_state * gsm;
- typedef short gsm_signal;
- typedef unsigned char gsm_byte;
- typedef gsm_byte gsm_frame[33];
- #define GSM_MAGIC 0xD
- #define GSM_PATCHLEVEL 10
- #define GSM_MINOR 0
- #define GSM_MAJOR 1
- #define GSM_OPT_VERBOSE 1
- #define GSM_OPT_FAST 2
- #define GSM_OPT_LTP_CUT 3
- #define GSM_OPT_WAV49 4
- #define GSM_OPT_FRAME_INDEX 5
- #define GSM_OPT_FRAME_CHAIN 6
- extern gsm gsm_create GSM_P((void));
- extern void gsm_destroy GSM_P((gsm));
- extern int gsm_print GSM_P((FILE *, gsm, gsm_byte *));
- extern int gsm_option GSM_P((gsm, int, int *));
- extern void gsm_encode GSM_P((gsm, gsm_signal *, gsm_byte *));
- extern int gsm_decode GSM_P((gsm, gsm_byte *, gsm_signal *));
- extern int gsm_explode GSM_P((gsm, gsm_byte *, gsm_signal *));
- extern void gsm_implode GSM_P((gsm, gsm_signal *, gsm_byte *));
- #undef GSM_P
- #endif
|