Changeset View
Changeset View
Standalone View
Standalone View
sys/dev/sound/pcm/mixer.h
| Show All 24 Lines | |||||
| * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||||
| * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||||
| * SUCH DAMAGE. | * SUCH DAMAGE. | ||||
| */ | */ | ||||
| #ifndef _PCM_MIXER_H_ | #ifndef _PCM_MIXER_H_ | ||||
| #define _PCM_MIXER_H_ | #define _PCM_MIXER_H_ | ||||
| #include "mixer_if.h" | |||||
| struct snd_mixer *mixer_create(device_t dev, kobj_class_t cls, void *devinfo, | struct snd_mixer *mixer_create(device_t dev, kobj_class_t cls, void *devinfo, | ||||
| const char *desc); | const char *desc); | ||||
| int mixer_delete(struct snd_mixer *m); | int mixer_delete(struct snd_mixer *m); | ||||
| int mixer_init(device_t dev, kobj_class_t cls, void *devinfo); | int mixer_init(device_t dev, kobj_class_t cls, void *devinfo); | ||||
| int mixer_uninit(device_t dev); | int mixer_uninit(device_t dev); | ||||
| int mixer_reinit(device_t dev); | int mixer_reinit(device_t dev); | ||||
| int mixer_ioctl_cmd(struct cdev *i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td, int from); | int mixer_ioctl_cmd(struct cdev *i_dev, u_long cmd, caddr_t arg, int mode, struct thread *td, int from); | ||||
| int mixer_oss_mixerinfo(struct cdev *i_dev, oss_mixerinfo *mi); | int mixer_oss_mixerinfo(struct cdev *i_dev, oss_mixerinfo *mi); | ||||
| ▲ Show 20 Lines • Show All 47 Lines • Show Last 20 Lines | |||||