dxx-rebirth/common/include/digi_mixer.h

31 lines
860 B
C
Raw Normal View History

2014-06-01 17:55:23 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
#pragma once
2012-07-01 02:54:33 +00:00
#include "maths.h"
#ifdef __cplusplus
#if defined(DXX_BUILD_DESCENT_I) || defined(DXX_BUILD_DESCENT_II)
2015-12-13 18:00:49 +00:00
namespace dsx {
2015-07-25 23:10:45 +00:00
struct sound_object;
int digi_mixer_init();
void digi_mixer_close();
int digi_mixer_start_sound(short, fix, int, int, int, int, sound_object *);
void digi_mixer_set_channel_volume(int, int);
void digi_mixer_set_channel_pan(int, int);
void digi_mixer_stop_sound(int);
void digi_mixer_end_sound(int);
int digi_mixer_is_channel_playing(int);
void digi_mixer_reset();
void digi_mixer_stop_all_channels();
void digi_mixer_set_digi_volume(int);
}
#endif
#endif