mirror of
https://github.com/0ldsk00l/nestopia.git
synced 2025-04-02 10:31:51 -04:00
22 lines
423 B
C++
22 lines
423 B
C++
#ifndef _AUDIO_H_
|
|
#define _AUDIO_H_
|
|
|
|
#include <SDL.h>
|
|
#include "core/api/NstApiEmulator.hpp"
|
|
#include "core/api/NstApiSound.hpp"
|
|
|
|
using namespace Nes::Api;
|
|
|
|
void audio_init();
|
|
void audio_deinit();
|
|
void audio_play();
|
|
void audio_pause();
|
|
void audio_unpause();
|
|
void audio_set_params(Sound::Output *soundoutput);
|
|
void audio_adj_volume();
|
|
|
|
bool timing_frameskip();
|
|
void timing_set_default();
|
|
void timing_set_altspeed();
|
|
|
|
#endif
|