|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/highlandlabs/cqi-bin/ALFA_DATA/alfasymlink/root/usr/lib/include/dev/speaker/ |
Upload File : |
/*
* speaker.h -- interface definitions for speaker ioctl()
*
* v1.4 by Eric S. Raymond ([email protected]) Aug 1993
* modified for FreeBSD by Andrew A. Chernov <[email protected]>
*/
#ifndef _DEV_SPEAKER_SPEAKER_H_
#define _DEV_SPEAKER_SPEAKER_H_
#include <sys/ioccom.h>
#define SPKRTONE _IOW('S', 1, tone_t) /* emit tone */
#define SPKRTUNE _IO('S', 2) /* emit tone sequence*/
typedef struct
{
int frequency; /* in hertz */
int duration; /* in 1/100ths of a second */
} tone_t;
/*
* Strings written to the speaker device are interpreted as tunes and played;
* see the spkr(4) man page for details.
*/
#endif /* !_DEV_SPEAKER_SPEAKER_H_ */