/*========================================================================= spu.h Author: PKG Created: Project: Spongebob Purpose: Copyright (c) 2000 Climax Development Ltd ===========================================================================*/ #ifndef __SOUND_SPU_H__ #define __SOUND_SPU_H__ /*---------------------------------------------------------------------- Includes -------- */ /* Std Lib ------- */ /*---------------------------------------------------------------------- Tyepdefs && Defines ------------------- */ /*---------------------------------------------------------------------- Structure defintions -------------------- */ class CSpuSound { public: void initialise(); void shutdown(); private: enum { MAX_SOUND_BANKS=4, MAX_SPU_MANAGEMENT=MAX_SOUND_BANKS+30, }; static char s_spuManagementTable[]; }; /*---------------------------------------------------------------------- Globals ------- */ /*---------------------------------------------------------------------- Functions --------- */ /*---------------------------------------------------------------------- */ #endif /* __SOUND_SPU_H__ */ /*=========================================================================== end */