You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
521 B
C
23 lines
521 B
C
//
|
|
// G A M E.O.N.E - LOW LEVEL LIB V1.0
|
|
// Copyright (C) 2001 LEVEL ONE ENTERTAINMENT,
|
|
// Licensed under the terms of LGPL.
|
|
//:---------------------------------------------------------------------------
|
|
//:Description
|
|
//
|
|
// LOW LEVEL MIXER DRIVER INCLUDE FILE
|
|
//
|
|
|
|
#ifndef _LLSOUND_MIXER_H
|
|
#define _LLSOUND_MIXER_H
|
|
|
|
|
|
int llsound_SetMasterVolume( float L, float R); //
|
|
int llsound_GetMasterVolume(float *L, float *R); //
|
|
|
|
void llsound_ResetMixer(void); // Restores Initial Values
|
|
|
|
#endif // _LLSOUND_MIXER_H
|
|
|
|
|