1 | //
|
---|
2 | // QuartzAudio.h
|
---|
3 | //
|
---|
4 | // X Window bell support using CoreAudio or AppKit.
|
---|
5 | // Greg Parker gparker@cs.stanford.edu 19 Feb 2001
|
---|
6 | /*
|
---|
7 | * Copyright (c) 2001 Greg Parker. All Rights Reserved.
|
---|
8 | *
|
---|
9 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
10 | * copy of this software and associated documentation files (the "Software"),
|
---|
11 | * to deal in the Software without restriction, including without limitation
|
---|
12 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
13 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
14 | * Software is furnished to do so, subject to the following conditions:
|
---|
15 | *
|
---|
16 | * The above copyright notice and this permission notice shall be included in
|
---|
17 | * all copies or substantial portions of the Software.
|
---|
18 | *
|
---|
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
20 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
22 | * THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
---|
23 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
---|
24 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
---|
25 | * DEALINGS IN THE SOFTWARE.
|
---|
26 | *
|
---|
27 | * Except as contained in this notice, the name(s) of the above copyright
|
---|
28 | * holders shall not be used in advertising or otherwise to promote the sale,
|
---|
29 | * use or other dealings in this Software without prior written authorization.
|
---|
30 | */
|
---|
31 | /* $XFree86: xc/programs/Xserver/hw/darwin/bundle/quartzAudio.h,v 1.2 2001/04/01 20:45:43 tsi Exp $ */
|
---|
32 |
|
---|
33 | #ifndef _QUARTZAUDIO_H
|
---|
34 | #define _QUARTZAUDIO_H
|
---|
35 |
|
---|
36 | #include "input.h"
|
---|
37 |
|
---|
38 | void QuartzAudioInit(void);
|
---|
39 | void QuartzBell(int volume, DeviceIntPtr pDevice, pointer ctrl, int class);
|
---|
40 |
|
---|
41 | #endif
|
---|