#ifndef _MISC_TYPES_ #define _MISC_TYPES_ #include #include "globals.h" typedef unsigned long ulong; typedef unsigned int uint; typedef unsigned short int us; typedef short int sint; typedef unsigned char uchar; typedef uchar bytes8[ 8 ]; typedef uchar bytes16[ 16 ]; typedef union { long *pl; int *pn; uchar *pc; float *pf; double *pd; void *pv; } WAVEPTR; typedef long WVFORM[ FAST_FFT_SZ ]; #define SLEEP(msToSleep) _sleep(msToSleep) #endif