BPicture: Fix archive constructor.
[haiku.git] / src / add-ons / kernel / drivers / audio / ac97 / sis7018 / Settings.h
blobed279936653d046415027778b6ab1a1e5f3eb9c8
1 /*
2 * SiS 7018, Trident 4D Wave DX/NX, Acer Lab M5451 Sound Driver.
3 * Copyright (c) 2002, 2008-2011 S.Zharski <imker@gmx.li>
4 * Distributed under the terms of the MIT license.
6 */
7 #ifndef _SiS7018_SETTINGS_H_
8 #define _SiS7018_SETTINGS_H_
11 #include <driver_settings.h>
13 #include "Driver.h"
16 void load_settings();
17 void release_settings();
19 void SiS7018_trace(bool force, const char *func, const char *fmt, ...);
21 #ifdef TRACE
22 #undef TRACE
23 #endif
24 #define TRACE(x...) SiS7018_trace(false, __func__, x)
26 #ifdef ERROR
27 #undef ERROR
28 #endif
29 #define ERROR(x...) SiS7018_trace(true, __func__, x)
32 #endif //_SiS7018_SETTINGS_H_