Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/cmd/unix/drawterm/kern/devaudio-none.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


/*
 * Linux and BSD
 */
#include	"u.h"
#include	"lib.h"
#include	"dat.h"
#include	"fns.h"
#include	"error.h"
#include	"devaudio.h"

/* maybe this should return -1 instead of sysfatal */
void
audiodevopen(void)
{
	error("no audio support");
}

void
audiodevclose(void)
{
	error("no audio support");
}

int
audiodevread(void *a, int n)
{
	error("no audio support");
	return -1;
}

int
audiodevwrite(void *a, int n)
{
	error("no audio support");
	return -1;
}

void
audiodevsetvol(int what, int left, int right)
{
	error("no audio support");
}

void
audiodevgetvol(int what, int *left, int *right)
{
	error("no audio support");
}


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.