xref: /netbsd-src/sys/arch/evbppc/wii/dev/avenc.h (revision 297a048c7058ddeb18e8f319a3ae433c18738b5e)
1*297a048cSjmcneill /* $NetBSD: avenc.h,v 1.1 2024/01/23 21:48:12 jmcneill Exp $ */
2*297a048cSjmcneill 
3*297a048cSjmcneill /*-
4*297a048cSjmcneill  * Copyright (c) 2024 Jared McNeill <jmcneill@invisible.ca>
5*297a048cSjmcneill  * All rights reserved.
6*297a048cSjmcneill  *
7*297a048cSjmcneill  * Redistribution and use in source and binary forms, with or without
8*297a048cSjmcneill  * modification, are permitted provided that the following conditions
9*297a048cSjmcneill  * are met:
10*297a048cSjmcneill  * 1. Redistributions of source code must retain the above copyright
11*297a048cSjmcneill  *    notice, this list of conditions and the following disclaimer.
12*297a048cSjmcneill  * 2. Redistributions in binary form must reproduce the above copyright
13*297a048cSjmcneill  *    notice, this list of conditions and the following disclaimer in the
14*297a048cSjmcneill  *    documentation and/or other materials provided with the distribution.
15*297a048cSjmcneill  *
16*297a048cSjmcneill  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17*297a048cSjmcneill  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18*297a048cSjmcneill  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19*297a048cSjmcneill  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20*297a048cSjmcneill  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21*297a048cSjmcneill  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22*297a048cSjmcneill  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23*297a048cSjmcneill  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24*297a048cSjmcneill  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25*297a048cSjmcneill  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26*297a048cSjmcneill  * SUCH DAMAGE.
27*297a048cSjmcneill  */
28*297a048cSjmcneill 
29*297a048cSjmcneill #ifndef _WII_DEV_AVENC_H_
30*297a048cSjmcneill #define _WII_DEV_AVENC_H_
31*297a048cSjmcneill 
32*297a048cSjmcneill void avenc_get_volume(uint8_t *, uint8_t *);
33*297a048cSjmcneill void avenc_set_volume(uint8_t, uint8_t);
34*297a048cSjmcneill 
35*297a048cSjmcneill #endif /* _WII_DEV_AVENC_H_ */
36