You can not 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
449 B
23 lines
449 B
15 years ago
|
#ifndef MIXER_NONE_H
|
||
|
#define MIXER_NONE_H
|
||
|
|
||
|
#include "mixer_backend.h"
|
||
|
|
||
|
class Mixer_None : public Mixer_Backend
|
||
|
{
|
||
|
public:
|
||
|
Mixer_None(int devnum);
|
||
|
virtual ~Mixer_None();
|
||
|
|
||
|
virtual int readVolumeFromHW( int devnum, Volume& vol );
|
||
|
virtual int writeVolumeToHW( int devnum, Volume& vol );
|
||
|
virtual bool setRecsrcHW( int devnum, bool on);
|
||
|
virtual bool isRecsrcHW( int devnum );
|
||
|
|
||
|
protected:
|
||
|
virtual int open();
|
||
|
virtual int close();
|
||
|
};
|
||
|
|
||
|
#endif
|