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.
5 *
6 */
7#ifndef _SiS7018_DRIVER_H_
8#define _SiS7018_DRIVER_H_
9
10
11#include <Drivers.h>
12#include <PCI.h>
13
14
15#define DRIVER_NAME	"sis7018"
16#define MAX_DEVICES	3
17
18
19const char* const kVersion = "2.0.2";
20
21extern pci_module_info *gPCI;
22
23extern "C" {
24
25status_t		init_hardware();
26status_t		init_driver();
27void			uninit_driver();
28const char**	publish_devices();
29device_hooks*	find_device(const char* name);
30
31}
32
33
34#endif // _SiS7018_DRIVER_H_
35
36