onechannel.h
508 Bytes
/*
* onechannel.h
*/
#define STATIC_SEGMENT 1
#define DYNAMIC_SEGMENT 2
#define STACKSIZE 0x2000
/*
* ifdef needed because this file is included by "spec"
*/
#ifdef _LANGUAGE_C
typedef struct
{
union {
short audio[1470]; /* Two channels at 735 samples/frame */
long long int force_structure_alignment;
} buffer;
} Abuffer;
typedef struct
{
Acmd cmdList[1024];
Abuffer aud;
} Dynamic;
extern Dynamic dynamic;
#endif /* _LANGUAGE_C */