SBSPSS/source/sound/spu.h
2000-10-05 14:16:09 +00:00

64 lines
1.2 KiB
C++

/*=========================================================================
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 */