2018-11-16 00:42:29 +01:00
|
|
|
/*****************************************************************************\
|
|
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
|
|
This file is licensed under the Snes9x License.
|
|
|
|
For further information, consult the LICENSE file in the root directory.
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
2010-09-25 17:46:12 +02:00
|
|
|
#ifndef __GTK_SOUND_H
|
|
|
|
#define __GTK_SOUND_H
|
|
|
|
|
2019-02-07 02:41:33 +01:00
|
|
|
void S9xPortSoundInit();
|
|
|
|
void S9xPortSoundDeinit();
|
|
|
|
void S9xPortSoundReinit();
|
|
|
|
void S9xSoundStart();
|
|
|
|
void S9xSoundStop();
|
2010-09-25 17:46:12 +02:00
|
|
|
|
2019-02-07 02:41:33 +01:00
|
|
|
int S9xSoundBase2log(int num);
|
|
|
|
int S9xSoundPowerof2(int num);
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
#endif /* __GTK_SOUND_H */
|